1
0
Fork 0
mirror of synced 2024-07-14 18:55:45 +12:00

remove new screen animation

This commit is contained in:
Gerard Burns 2023-08-21 08:12:49 +01:00
parent a5044ea85a
commit c11cd9c3e2

View file

@ -118,18 +118,17 @@
<style>
.newScreen {
display: none;
width: 100vw;
height: 0;
bottom: 0;
overflow: hidden;
position: absolute;
background-color: var(--background);
height: calc(100vh - 58px);
z-index: 2;
transition: height 350ms ease-in-out;
background-color: var(--background);
}
.newScreenVisible {
height: calc(100vh - 58px);
display: initial;
}
.screens {