Skip to content

Commit c70acbd

Browse files
committed
move comment in CSS to end of line [skip ci]
1 parent de4701d commit c70acbd

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/css/doc.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
font-size: var(--doc-font-size--desktop);
1515
margin: var(--doc-margin--desktop);
1616
max-width: var(--doc-max-width--desktop);
17-
min-width: 0;
17+
min-width: 0; /* min-width: 0 required for flexbox to constrain overflowing elements */
1818
position: relative;
1919
z-index: var(--z-index-doc);
2020
}

src/css/main.css

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@
1111
@media screen and (min-width: 1024px) {
1212
main {
1313
flex: auto;
14-
/* min-width: 0 required for flexbox to constrain overflowing elements */
15-
min-width: 0;
14+
min-width: 0; /* min-width: 0 required for flexbox to constrain overflowing elements */
1615
}
1716

1817
main > .content {

0 commit comments

Comments
 (0)