mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 09:45:04 +01:00
19 lines
289 B
CSS
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;
|
|
}
|
|
}
|