51 lines
1.0 KiB
CSS
51 lines
1.0 KiB
CSS
body {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
.app-shell {
|
|
width: min(100vw, 430px);
|
|
height: 100dvh;
|
|
position: relative;
|
|
background:
|
|
radial-gradient(circle at 16% -8%, rgba(211, 168, 76, 0.16), transparent 38%),
|
|
linear-gradient(165deg, rgba(10, 21, 44, 0.98), rgba(5, 11, 24, 0.99));
|
|
border-left: 1px solid rgba(211, 170, 86, 0.2);
|
|
border-right: 1px solid rgba(211, 170, 86, 0.2);
|
|
box-shadow: var(--shadow);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.screen-content {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 74px;
|
|
overflow-y: auto;
|
|
padding: 14px 14px 24px;
|
|
}
|
|
|
|
.screen-content.no-app-chrome {
|
|
bottom: 0;
|
|
padding-bottom: calc(24px + env(safe-area-inset-bottom));
|
|
}
|
|
|
|
|
|
.toolbar-slot {
|
|
position: absolute;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
|
|
background: linear-gradient(180deg, rgba(7, 12, 23, 0) 0%, rgba(6, 11, 22, 0.96) 44%);
|
|
}
|
|
|
|
@media (min-width: 900px) {
|
|
.app-shell {
|
|
margin: 16px 0;
|
|
height: calc(100dvh - 32px);
|
|
border-radius: 24px;
|
|
}
|
|
}
|