2020-02-20 18:19:34 -08:00

40 lines
579 B
SCSS

.pager {
position: sticky;
bottom: 0;
display: grid;
grid-template-columns: 1fr 1fr;
grid-gap: 5px;
justify-content: center;
align-items: center;
padding: 1em 0;
margin-top: -1em;
&.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;
}
}