umami/components/layout/Footer.module.css
2020-10-03 10:53:06 -07:00

19 lines
289 B
CSS

.footer {
display: flex;
justify-content: space-between;
align-items: center;
font-size: var(--font-size-small);
min-height: 100px;
text-align: center;
}
.version {
text-align: right;
}
@media only screen and (max-width: 768px) {
.version {
text-align: center;
}
}