Skip to content

Commit

Permalink
refactor: move styles that are overwritten within other classes
Browse files Browse the repository at this point in the history
Move margin-top and padding inside two-column as they are overwritten
within single-column.
  • Loading branch information
marjys committed Mar 6, 2024
1 parent d25ef5f commit 92c6187
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -180,19 +180,19 @@ a.direct-link {

ul {
box-sizing: content-box;
margin-top: 20px;
padding: 0 15px;
}

ul.two-column {
column-count: 2;
column-gap: 30px;
margin-top: 20px;
padding: 0 15px;
}

ul.single-column,
ul.single-column > li > ul {
margin-top: 0;
padding-right: 0;
padding: 0 0 0 15px;
}

ul li {
Expand Down

0 comments on commit 92c6187

Please sign in to comment.