fix: smaller text in table

This commit is contained in:
Kazhnuz 2023-02-13 21:50:11 +01:00
parent d62bbceef9
commit e99da55f13

View file

@ -103,14 +103,14 @@ function go(rel: number) {
<div>
<button
class="btn btn-grey m-0 mr-1"
class="btn-grey btn-small m-0 mr-1"
:class="{ 'bg-grey': !canGo(-1), 'btn-secondary': canGo(-1) }"
@click="go(-1)"
>
Page précédante
</button>
<button
class="btn btn-grey m-0"
class="btn-grey btn-small m-0"
:class="{ 'bg-grey': !canGo(1), 'btn-secondary': canGo(1) }"
@click="go(1)"
>
@ -126,6 +126,10 @@ function go(rel: number) {
padding-bottom: 0.5rem;
}
table {
font-size: 0.8rem;
}
.pages {
font-weight: 600;
}