Refonte inventaire et objets #236

Merged
kazhnuz merged 27 commits from inventaire into master 2023-02-18 19:06:28 +01:00
Showing only changes of commit e99da55f13 - Show all commits

View file

@ -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;
} }