-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
49 lines (43 loc) · 806 Bytes
/
style.css
File metadata and controls
49 lines (43 loc) · 806 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
html {
max-width: 100vw;
}
html, body, #__next {
margin: 0;
padding: 0;
min-height: 100%;
font-size: 16px;
}
@media (min-width: 37.5rem) {
.hello-world,
.container {
padding: 3rem;
}
}
.test {
background-color: rgb(238, 238, 238);
display: flex;
-webkit-box-align: center;
align-items: center;
-webkit-box-pack: center;
justify-content: center;
width: 100%;
height: 100%;
position: fixed;
overflow: hidden;
}
.mdc-drawer__content {
height: calc(100vh - 15rem);
padding-bottom: 88px;
padding-top: 0.5rem;
}
.mdc-drawer--dismissible.mdc-drawer--open + .app__content {
max-width: calc(100% - 16rem);
}
.mdc-drawer--dismissible {
position: fixed;
top: 64px;
left: 0;
height: calc(100vh - 64px);
overflow-y: auto;
z-index: auto;
}