stremio-web/src/common/PaginationInput/styles.less
2019-12-03 10:30:25 +02:00

34 lines
No EOL
765 B
Text

.pagination-input-container {
display: flex;
flex-direction: row;
.prev-button-container, .next-button-container {
flex: none;
display: flex;
align-items: center;
justify-content: center;
.icon {
display: block;
fill: var(--color-surfacelighter);
}
}
.label-container {
flex: 1;
align-self: stretch;
display: flex;
align-items: center;
justify-content: center;
.label {
flex: none;
min-width: 1.2rem;
max-width: 3rem;
white-space: nowrap;
text-overflow: ellipsis;
text-align: center;
color: var(--color-surfacelighter);
}
}
}