-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathmasonry-optional-mobile.css
35 lines (34 loc) · 1.02 KB
/
masonry-optional-mobile.css
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
@media only screen and (max-device-width : 926px) {
.roam-body {
overflow-x: scroll !important; /* !important needed */
}
.roam-main {
min-width: 98vw;
}
#right-sidebar[style*="flex: 0 0 40%;"] {
flex: 0 0 95% !important; /* !important needed */
}
#roam-right-sidebar-content {
border-left: dashed 1px var(--masonry-border);
margin-right: 10px;
}
#right-sidebar[style*="flex: 0 0 0px;"], .rm-resize-handle {
display: none;
}
div:not(input) {
-webkit-user-select: none; /* prevent copy paste, to allow, change 'none' to 'text' */
}
:root {
--masonry-minWidth: unset !important;
--masonry-maxWidth: unset !important;
--masonry-minHeight: unset !important;
--masonry-startWidth: 72vw !important;
--masonry-startHeight: 100vh !important;
}
.sidebar-content>div:not(.rm-dnd-separator) {
margin-left: 10px;
}
#rm-mobile-bar {
position: fixed;
}
}