1
0
mirror of https://github.com/amir20/dozzle.git synced 2025-12-24 06:28:42 +01:00

feat: adds a sub header to display stats on mobile view (#2212)

This commit is contained in:
Amir Raminfar
2023-05-23 12:07:19 -07:00
committed by GitHub
parent 8586f16ea5
commit fc0c189e38
6 changed files with 24 additions and 13 deletions

View File

@@ -82,6 +82,10 @@ section {
background: var(--body-background-color);
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
z-index: 1;
@media screen and (max-width: 768px) {
top: 70px;
}
}
&.is-full-height-scrollable {
@@ -162,3 +166,11 @@ section {
}
}
</style>
<style>
@media screen and (max-width: 768px) {
.splitpanes__pane {
overflow: unset !important;
}
}
</style>