Skip to content

Commit 38d8a0f

Browse files
committed
Line: Extend all horizontal lines into the gutter
1 parent ae84628 commit 38d8a0f

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

assets/css/v2/style.css

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1087,6 +1087,10 @@ blockquote ul {
10871087
white-space: nowrap;
10881088
position: relative;
10891089

1090+
/* Move to gutter */
1091+
width: calc(100% + 2rem);
1092+
margin-left: -1rem;
1093+
10901094
&::after {
10911095
content: "";
10921096
position: absolute;
@@ -1190,6 +1194,12 @@ blockquote ul {
11901194
.tab-content {
11911195
border-bottom: 1px solid black;
11921196
padding-bottom: 1rem;
1197+
padding-left: 1rem;
1198+
padding-right: 1rem;
1199+
1200+
/* Move to gutter */
1201+
width: calc(100% + 2rem);
1202+
margin-left: -1rem;
11931203

11941204
.tab-pane {
11951205
display: none;
@@ -1332,7 +1342,10 @@ figure {
13321342

13331343
/* HR Lines */
13341344
hr {
1335-
width: 100%;
1345+
/* Move to gutter */
1346+
width: calc(100% + 2rem);
1347+
margin-left: -1rem;
1348+
13361349
border: 1px solid var(--color-divider);
13371350
}
13381351

0 commit comments

Comments
 (0)