Replies: 1 comment
-
Figured it out almost immediately after posting this! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I really love this theme, it's concise and expandable right out of the box. Thank you!
One question I have that I've been unable to figure out a solution for myself is the
<hr>
between the table of contents and post text, as seen here:From what I can tell, it's referenced in this bit from the built code:
article :where(blockquote):not(:where([class ~ =not-prose], [class ~ =not-prose] *)) {
font-weight: 500;
font-style: italic;
color: var(--tw-prose-quotes);
border-inline-start-width: .25rem;
border-inline-start-color: var(--tw-prose-quote-borders);
quotes: "“""”""‘""’";
margin-top: 1.6em;
<-- heremargin-bottom: 1.6em;
<-- and herepadding-inline-start:1em }
But how to change those figures is beyond me. I'm newish to Tailwind but can't seem to find where that
1.6em
is being referenced. Is this a Tailwind default? How do I change this?Beta Was this translation helpful? Give feedback.
All reactions