mirror of
https://github.com/kremalicious/umami.git
synced 2025-02-14 21:10:34 +01:00
39 lines
498 B
CSS
39 lines
498 B
CSS
.container {
|
|
position: relative;
|
|
min-height: 430px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex: 1;
|
|
}
|
|
|
|
.actions {
|
|
display: flex;
|
|
gap: 20px;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.footer {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
.search {
|
|
max-width: 300px;
|
|
}
|
|
|
|
@media only screen and (max-width: 992px) {
|
|
.container {
|
|
min-height: auto;
|
|
}
|
|
|
|
.actions {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.search {
|
|
max-width: 100%;
|
|
}
|
|
}
|