Fix edge-to-edge
All checks were successful
Android Build / publish (push) Successful in 26s
Linux Build / publish (push) Successful in 50s

This commit is contained in:
olcxja 2026-05-13 22:56:40 +02:00
commit 80bee6c17d
4 changed files with 20 additions and 12 deletions

View file

@ -41,10 +41,15 @@ body {
padding-top: env(safe-area-inset-top);
background-color: var(--main-bg-color);
overflow: hidden;
}
main, loading, body {
display: flex;
height: 100dvh;
width: 100%;
}
main, loading {
display: flex;
height: 100%;
width: 100%;
overflow: hidden;
}
loading {
justify-content: center;
@ -152,7 +157,7 @@ roomcontent {
display: flex;
flex-direction: column;
height: 100dvh;
height: 100%;
width: calc(100vw - (var(--icon-button-height) + (var(--button-margin) * 2) + var(--border-width)) - 17rem);
border-right: var(--border-width) solid var(--light-border-color);
}
@ -160,16 +165,15 @@ roomcontent2 {
display: flex;
flex-direction: column;
height: calc(100dvh - (var(--button-height) * 1.5));
height: calc(100% - (var(--button-height) * 1.5));
width: 100%;
}
sidebar {
display: flex;
flex-direction: column;
height: 100dvh;
height: 100%;
width: calc(var(--icon-button-height) + (var(--button-margin) * 2) + var(--border-width));
border-right: var(--border-width) solid var(--light-border-color);
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 14 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 14 KiB

Before After
Before After

View file

@ -41,10 +41,15 @@ body {
padding-top: env(safe-area-inset-top);
background-color: var(--main-bg-color);
overflow: hidden;
}
main, loading, body {
display: flex;
height: 100dvh;
width: 100%;
}
main, loading {
display: flex;
height: 100%;
width: 100%;
overflow: hidden;
}
loading {
justify-content: center;
@ -152,7 +157,7 @@ roomcontent {
display: flex;
flex-direction: column;
height: 100dvh;
height: 100%;
width: calc(100vw - (var(--icon-button-height) + (var(--button-margin) * 2) + var(--border-width)) - 17rem);
border-right: var(--border-width) solid var(--light-border-color);
}
@ -160,16 +165,15 @@ roomcontent2 {
display: flex;
flex-direction: column;
height: calc(100dvh - (var(--button-height) * 1.5));
height: calc(100% - (var(--button-height) * 1.5));
width: 100%;
}
sidebar {
display: flex;
flex-direction: column;
height: 100dvh;
height: 100%;
width: calc(var(--icon-button-height) + (var(--button-margin) * 2) + var(--border-width));
border-right: var(--border-width) solid var(--light-border-color);
}