Refonte inventaire et objets #236
1 changed files with 6 additions and 2 deletions
|
@ -103,14 +103,14 @@ function go(rel: number) {
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<button
|
<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) }"
|
:class="{ 'bg-grey': !canGo(-1), 'btn-secondary': canGo(-1) }"
|
||||||
@click="go(-1)"
|
@click="go(-1)"
|
||||||
>
|
>
|
||||||
Page précédante
|
Page précédante
|
||||||
</button>
|
</button>
|
||||||
<button
|
<button
|
||||||
class="btn btn-grey m-0"
|
class="btn-grey btn-small m-0"
|
||||||
:class="{ 'bg-grey': !canGo(1), 'btn-secondary': canGo(1) }"
|
:class="{ 'bg-grey': !canGo(1), 'btn-secondary': canGo(1) }"
|
||||||
@click="go(1)"
|
@click="go(1)"
|
||||||
>
|
>
|
||||||
|
@ -126,6 +126,10 @@ function go(rel: number) {
|
||||||
padding-bottom: 0.5rem;
|
padding-bottom: 0.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
table {
|
||||||
|
font-size: 0.8rem;
|
||||||
|
}
|
||||||
|
|
||||||
.pages {
|
.pages {
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue