fix: smaller text in table
This commit is contained in:
parent
d62bbceef9
commit
e99da55f13
1 changed files with 6 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue