blob: 3f27b007e39bd7d95dfe76829f2f58bb42c50685 [file] [log] [blame]
pineafan7bd0ad62022-10-26 22:11:29 +01001
pineafanfd93e6e2022-05-06 20:30:09 +01002.container {
3 position: fixed;
4 top: 42px;
5 height: calc(100vh - 42px);
6 width: 100%;
pineafan74f16742022-11-07 21:57:55 +00007 border-radius: 25px 25px 0 0;
pineafanb7c79742022-11-06 18:08:36 +00008 box-shadow: 0 0 0 1000px var(--theme-ui-colors-borders);
pineafanb18f0192022-10-27 22:08:36 +01009 transition: 0.3s ease-in-out;
pineafanfd93e6e2022-05-06 20:30:09 +010010 pointer-events: none;
11 background: transparent;
12}
13
14.container::-webkit-scrollbar {
15 display: none;
16}
17
18.container, .container * {
19 transform: rotateY(0);
20 -webkit-transform: rotateY(0);
pineafanb7c79742022-11-06 18:08:36 +000021}
22
23.centeredSubBar {
24 display: flex;
25 flex-direction: row;
26 justify-content: center;
27 align-items: center;
28 width: 100%;
29 height: 100%;
pineafanfd93e6e2022-05-06 20:30:09 +010030}