umami/src/components/common/Pager.module.css

33 lines
461 B
CSS
Raw Normal View History

.pager {
display: grid;
grid-template-columns: repeat(3, 1fr);
align-items: center;
}
.nav {
display: flex;
align-items: center;
justify-content: center;
}
2023-08-10 22:26:33 +02:00
.text {
2023-08-25 20:54:44 +02:00
font-size: var(--font-size-md);
margin: 0 16px;
justify-content: center;
}
2023-10-15 22:12:29 +02:00
.count {
color: var(--base600);
font-weight: 700;
}
@media only screen and (max-width: 992px) {
.pager {
grid-template-columns: repeat(2, 1fr);
}
.nav {
justify-content: end;
}
2023-08-10 22:26:33 +02:00
}