File size: 665 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
@import "@wordpress/base-styles/breakpoints";
@import "@wordpress/base-styles/mixins";

.content-sidebar {

	&.main {
		margin-top: 32px;
		&.is-wide-layout {
			@include break-small {
				padding: 0;
			}
		}
	}

	grid-row: 4 / span 1;

	@include break-xlarge {
		&.main {
			margin-top: 40px;
		}
		grid-column: 1 / span 12;
		display: grid;
		grid-template-columns: repeat(12, [col-start] minmax(0, 1fr));
		grid-gap: 32px;
		grid-column-gap: 24px;
	}
	&__main-content {
		@include break-xlarge {
			grid-column: 1 / span 8;
		}
	}

	&__right-sidebar {
		@include break-xlarge {
			grid-column: 9 / span 4;
		}
	}
}

header.current-section {
	padding: 0 16px;
}