umami/components/layout/Footer.module.css

20 lines
314 B
CSS
Raw Normal View History

2020-08-07 09:27:12 +00:00
.footer {
2020-08-15 08:17:15 +00:00
display: flex;
2020-09-07 08:22:16 +00:00
justify-content: space-between;
2020-08-15 08:17:15 +00:00
align-items: center;
font-size: var(--font-size-sm);
2020-10-03 17:53:06 +00:00
text-align: center;
2022-03-01 04:54:32 +00:00
margin: 30px 0;
2020-10-03 17:53:06 +00:00
}
.version {
text-align: right;
2022-02-26 23:53:45 +00:00
padding-right: 10px;
2020-10-03 17:53:06 +00:00
}
@media only screen and (max-width: 768px) {
2022-02-26 23:53:45 +00:00
.footer .version {
2020-10-03 17:53:06 +00:00
text-align: center;
}
2020-08-15 08:17:15 +00:00
}