umami/components/layout/Footer.module.css

20 lines
317 B
CSS

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