mirror of
https://github.com/kremalicious/umami.git
synced 2025-02-06 01:15:42 +01:00
Merge pull request #2841 from Cuzart/fix/mobile-dvh-and-dashboard-website-header-breaking
fix: mobile dvh and dashboard website header breaking
This commit is contained in:
commit
bcc712a40c
@ -17,5 +17,6 @@
|
|||||||
grid-row: 2 / 3;
|
grid-row: 2 / 3;
|
||||||
min-height: 0;
|
min-height: 0;
|
||||||
height: calc(100vh - 60px);
|
height: calc(100vh - 60px);
|
||||||
|
height: calc(100dvh - 60px);
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,9 @@
|
|||||||
.header {
|
.header {
|
||||||
display: grid;
|
display: flex;
|
||||||
grid-template-columns: 1fr max-content;
|
gap: 10px;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
padding: 20px 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.title {
|
.title {
|
||||||
@ -12,7 +14,7 @@
|
|||||||
font-size: 24px;
|
font-size: 24px;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
height: 100px;
|
height: 60px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.actions {
|
.actions {
|
||||||
@ -22,6 +24,7 @@
|
|||||||
justify-content: flex-end;
|
justify-content: flex-end;
|
||||||
gap: 30px;
|
gap: 30px;
|
||||||
min-height: 0;
|
min-height: 0;
|
||||||
|
margin-left: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.selected {
|
.selected {
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
.container {
|
.container {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
min-height: calc(100vh - 200px);
|
min-height: calc(100vh - 200px);
|
||||||
|
min-height: calc(100dvh - 200px);
|
||||||
}
|
}
|
||||||
|
@ -8,4 +8,5 @@
|
|||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
padding: 0 20px;
|
padding: 0 20px;
|
||||||
min-height: calc(100vh - 60px);
|
min-height: calc(100vh - 60px);
|
||||||
|
min-height: calc(100dvh - 60px);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user