-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathstyles.css
More file actions
34 lines (29 loc) · 857 Bytes
/
styles.css
File metadata and controls
34 lines (29 loc) · 857 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
/* css styles */
/* Make the margin sidebar wider */
#quarto-margin-sidebar {
width: 400px !important;
min-width: 400px !important;
overflow-y: auto !important;
/* Show scrollbars if needed */
}
/* Adjust the main content area to accommodate wider sidebar */
.page-columns .page-full {
grid-template-columns: 1fr 400px !important;
}
/* For larger screens, make it even wider */
@media (min-width: 1400px) {
#quarto-margin-sidebar {
width: 400px !important;
min-width: 400px !important;
overflow-y: auto !important;
/* Show scrollbars if needed */
}
.page-columns .page-full {
grid-template-columns: 1fr 500px !important;
}
}
/* Ensure the iframe fits nicely in the wider sidebar */
.margin-sidebar-content iframe {
width: 100% !important;
max-width: none !important;
}