Skip to content

Commit

Permalink
fix: removed extra space from blockquotes (#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
rochacbruno authored Oct 21, 2024
1 parent b4afb1e commit 2eeafca
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion example/static/marmite.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
--pico-color-grey-50: #f1f1f1;
--pico-color-grey-700: #474747;
--pico-border-radius: 0.5rem;
--pico-typography-spacing-vertical: 1rem;
}

[data-theme="light"],
Expand All @@ -22,10 +23,18 @@
--pico-tag: #2a2f3a;
}

* {
a {
text-decoration: none;
}

blockquote {
padding: 0;
padding-left: 1rem;
padding-right: 1rem;
padding-top: 1rem;
padding-bottom: 0.01rem;
}

/* Menu Hamburguer */
.header-nav {
display: flex;
Expand Down

0 comments on commit 2eeafca

Please sign in to comment.