38 lines
701 B
SCSS
Vendored
38 lines
701 B
SCSS
Vendored
.pagination {
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
|
|
button {
|
|
background-color: #1c2d35;
|
|
border: 1px solid white;
|
|
color: white;
|
|
|
|
height: 40px;
|
|
width: 120px;
|
|
padding: .5rem;
|
|
flex-grow: 1;
|
|
}
|
|
|
|
button:not(.unselectable) {
|
|
cursor: pointer;
|
|
}
|
|
|
|
button:not(.unselectable):hover {
|
|
background-color: #2d3e46;
|
|
}
|
|
|
|
button:not(:last-child) {
|
|
border-right: none;
|
|
}
|
|
|
|
button:first-child {
|
|
border-top-left-radius: 15px;
|
|
border-bottom-left-radius: 15px;
|
|
}
|
|
|
|
button:last-child {
|
|
border-top-right-radius: 15px;
|
|
border-bottom-right-radius: 15px;
|
|
}
|
|
}
|