Skip to content

Commit

Permalink
fix: Mobile list were cropping
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaeldelboni committed Nov 6, 2021
1 parent 94746fd commit f7e123d
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions src/css/nota.css
Original file line number Diff line number Diff line change
Expand Up @@ -166,17 +166,24 @@ p code {

ul, ol {
margin: 0;
padding: 0;
list-style-position: outside;
margin-block-end: 3.2rem;
padding: 0;
}

ul ul {
ul ul, ol ol {
list-style-position: inside;
}

ol ol {
list-style-position: inside;
@media (max-width: 684px) {
ul, ol {
list-style-position: inside;
}

ul ul, ol ol {
padding-left: 15px;
list-style-position: inside;
}
}

a {
Expand Down

0 comments on commit f7e123d

Please sign in to comment.