Browse Source

Reduce left margin of lists

The previous margin was pretty excessive, especially on mobile.
merge-requests/68/head
Chad Birch 6 years ago
parent
commit
b223017084
  1. 4
      tildes/scss/_placeholders.scss

4
tildes/scss/_placeholders.scss

@ -15,11 +15,11 @@
// sets up (nested) lists specifically for text content // sets up (nested) lists specifically for text content
%lists-text { %lists-text {
ol, ul { ol, ul {
margin: 0 0 0.4rem 2rem;
margin: 0 0 0.4rem 1rem;
li { li {
margin-top: 0.2rem; margin-top: 0.2rem;
max-width: $paragraph-max-width - 2rem; // subtract left margin
max-width: $paragraph-max-width - 1rem; // subtract left margin
} }
&:last-child { &:last-child {

Loading…
Cancel
Save