blob: 89ab654171f0361d80cd449987970f82a6562967 (
plain) (
blame)
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
|
.space-between {
display: flex;
flex-direction: row;
justify-content: space-between;
}
.p-summary {
display: none;
}
.logo {
height: 64px;
}
@media (min-width: 1030px) {
.single-page {
display: flex;
flex-direction: row;
gap: var(--pico-block-spacing-horizontal);
}
.sidebar {
min-width: 300px;
height: auto;
}
.sidebar .toc {
min-width: 300px;
}
.h-entry {
width: 100%;
max-width: 1130px;
}
}
|