-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresponsive.css
More file actions
49 lines (39 loc) · 1.12 KB
/
responsive.css
File metadata and controls
49 lines (39 loc) · 1.12 KB
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
:root {
--sidebar-height: 195px;
}
@media (max-width: 767px) {
/* ======================================================================
SCREEN
====================================================================== */
#screen {
/* display: flex; */
/* width: 100vw; */
/* overflow: hidden; */
/* min-height: 100vh; */
flex-direction: column;
}
/* ======================================================================
SIDEBAR
====================================================================== */
#screen .sidebar {
padding: 1rem;
max-width: 100%;
background: var(--bg-p);
color: #e5e5e5;
}
.sidebar #cat-container {
flex-direction: row;
overflow: scroll;
}
.sidebar .cat-name {
min-width: fit-content;
flex-grow: 1;
}
/* ======================================================================
DISPLAY
====================================================================== */
#screen .display {
padding: 1rem;
max-height: calc(100vh - var(--sidebar-height));
}
}