50 lines
717 B
SCSS
Raw Normal View History

2020-02-20 14:38:25 -08:00
.pager {
position: sticky;
bottom: 0;
display: flex;
justify-content: space-between;
2020-02-20 14:38:25 -08:00
align-items: center;
padding: 1em 0;
margin-top: -1em;
2020-02-20 14:38:25 -08:00
&.top {
margin: 0 0 1em;
}
> div {
display: flex;
flex-basis: 23%;
2020-02-20 14:38:25 -08:00
}
.btn {
font-size: 0.9em;
box-shadow: 0px 1px 5px rgba(#000, 0.5);
color: white;
white-space: nowrap;
width: 100%;
// min-width: 75%;
2020-02-20 14:38:25 -08:00
display: flex;
2020-12-01 11:42:43 -08:00
height: 36px;
max-width: calc(50vw - 10px);
.caption {
overflow-x: hidden;
}
2020-02-20 14:38:25 -08:00
}
2020-12-01 11:42:43 -08:00
.btn.left .caption {
2020-02-20 14:38:25 -08:00
justify-content: flex-start;
}
2020-12-01 11:42:43 -08:00
.btn.right .caption {
2020-02-20 14:38:25 -08:00
justify-content: flex-end;
}
span.svg-icon {
margin-top: 1px;
2020-12-01 11:42:43 -08:00
flex: 0 0 20px;
}
2020-02-20 14:38:25 -08:00
}