mirror of
https://github.com/GenderDysphoria/GenderDysphoria.fyi.git
synced 2025-01-31 07:16:17 +00:00
36 lines
524 B
SCSS
36 lines
524 B
SCSS
|
|
||
|
.pager {
|
||
|
display: grid;
|
||
|
grid-template-columns: 1fr 1fr;
|
||
|
grid-gap: 5px;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
margin: 1em 0;
|
||
|
|
||
|
&.top {
|
||
|
margin: 0 0 1em;
|
||
|
}
|
||
|
|
||
|
> div {
|
||
|
display: flex;
|
||
|
}
|
||
|
|
||
|
.btn {
|
||
|
font-size: 0.9em;
|
||
|
box-shadow: 0px 1px 5px rgba(#000, 0.5);
|
||
|
color: white;
|
||
|
white-space: nowrap;
|
||
|
// width: 100%;
|
||
|
min-width: 75%;
|
||
|
display: flex;
|
||
|
}
|
||
|
|
||
|
.back, .back .btn {
|
||
|
justify-content: flex-start;
|
||
|
}
|
||
|
|
||
|
.forward, .forward .btn {
|
||
|
justify-content: flex-end;
|
||
|
}
|
||
|
}
|