forked from olcxjas-softworks/LarpixClient
Android builds fixed
- new icon - fixed android icons - fixed android status & navigation bar - added "Splash" page
This commit is contained in:
parent
8fe2b5cf28
commit
6ff37cb3be
85 changed files with 415 additions and 161 deletions
|
|
@ -27,10 +27,14 @@
|
|||
font-size: 80%;
|
||||
padding: 0 0.5rem;
|
||||
}
|
||||
.aqua {
|
||||
color: rgb(0 139 200);
|
||||
}
|
||||
html {
|
||||
font-size: max(16px, calc(100vw / 120));
|
||||
}
|
||||
body {
|
||||
padding-top: env(safe-area-inset-top);
|
||||
background-color: var(--main-bg-color);
|
||||
display: flex;
|
||||
height: 100dvh;
|
||||
|
|
@ -128,9 +132,18 @@ roomcontent {
|
|||
flex-direction: column;
|
||||
|
||||
height: 100dvh;
|
||||
width: calc(100vw - (var(--icon-button-height) + (var(--button-margin) * 2) + var(--border-width)) - 22rem);
|
||||
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);
|
||||
}
|
||||
roomcontent2 {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
||||
height: calc(100dvh - (var(--button-height) * 1.5));
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
|
||||
sidebar {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
|
@ -140,7 +153,9 @@ sidebar {
|
|||
border-right: var(--border-width) solid var(--light-border-color);
|
||||
}
|
||||
sidebar.second {
|
||||
width: 20rem;
|
||||
width: 17rem;
|
||||
min-width: 17rem;
|
||||
max-width: 17rem;
|
||||
}
|
||||
.sidebar-section-header {
|
||||
display: flex;
|
||||
|
|
@ -199,6 +214,7 @@ hr {
|
|||
|
||||
|
||||
#notification-container {
|
||||
padding-top: env(safe-area-inset-top);
|
||||
position: fixed;
|
||||
top: 1.5rem;
|
||||
left: 50%;
|
||||
|
|
@ -250,4 +266,35 @@ hr {
|
|||
|
||||
.notification.success {
|
||||
border-color: var(--big-green);
|
||||
}
|
||||
|
||||
roomtopbar {
|
||||
height: calc(var(--button-height) * 1.5);
|
||||
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
|
||||
width: 100%;
|
||||
border-bottom: var(--border-width) solid var(--light-border-color);
|
||||
|
||||
line-height: calc(var(--button-height) * 1.5);
|
||||
font-weight: bold;
|
||||
padding-left: calc(var(--button-margin) * 3);
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
sidebar.second#roomdetailsbar {
|
||||
height: calc(var(--button-height) * 1.5);
|
||||
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
|
||||
border-bottom: var(--border-width) solid var(--light-border-color);
|
||||
}
|
||||
fullcontainer {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
herotitle {
|
||||
font-weight: bold;
|
||||
font-size: 1.6rem;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue