layout.scss: add pagination default style

This commit is contained in:
Alice Gaudon 2021-03-30 12:32:41 +02:00
parent 959e5ca276
commit 0f83dd7ad6
1 changed files with 27 additions and 0 deletions

View File

@ -914,3 +914,30 @@ td.actions {
.table-col-grow {
width: 100%;
}
.pagination {
ul {
display: flex;
flex-direction: row;
list-style: none;
padding: 8px;
justify-content: center;
li {
a, &.active, &.ellipsis {
display: block;
min-width: 40px;
height: 40px;
padding: 4px;
line-height: 32px;
text-align:center;
&:hover:not(.active):not(.ellipsis) {
background-color: #fff5;
}
}
}
}
}