blob: d082bc0da067f81a613cafba69b0d87c37073c97 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* Align repo header to the content, just on the left side */
body:not(.full-width):not(.enterprise) main > .hide-full-screen > * {
padding-left: calc(50% - 1280px / 2) !important;
}
/* Restore the original padding on those 2 elements. The media queries follows GitHub’s values */
body:not(.full-width):not(.enterprise) main > .hide-full-screen > * > * {
margin-left: 16px !important;
}
@media (min-width: 768px) {
body:not(.full-width):not(.enterprise) main > .hide-full-screen > * > * {
margin-left: 24px !important;
}
}
@media (min-width: 1012px) {
body:not(.full-width):not(.enterprise) main > .hide-full-screen > * > * {
margin-left: 32px !important;
}
}
|