modify css to reduce spacing

This commit is contained in:
pdxlocations 2024-09-02 15:16:52 -07:00
parent fcc74c59ce
commit ad1d91a500

View file

@ -14,6 +14,7 @@
--ifm-list-item-margin: 0; --ifm-list-item-margin: 0;
--ifm-code-font-size: 95%; --ifm-code-font-size: 95%;
--ifm-z-index-fixed: 1; --ifm-z-index-fixed: 1;
--ifm-leading: .8rem;
--accent: #67ea94; --accent: #67ea94;
--base: #f3f4f6; --base: #f3f4f6;
--primary: #ffffff; --primary: #ffffff;
@ -185,6 +186,7 @@ a + .navbar__link > svg {
.markdown :where(li):not(:where([class~="not-prose"] *)) { .markdown :where(li):not(:where([class~="not-prose"] *)) {
margin-bottom: 0; margin-bottom: 0;
margin-top: 0; margin-top: 0;
line-height: 1.6;
} }
.markdown .markdown
@ -271,4 +273,11 @@ blockquote p::after,
.markdown blockquote p::after { .markdown blockquote p::after {
content: none !important; content: none !important;
display: none !important; display: none !important;
}
p{
line-height: 1.5;
}
.markdown img {
margin-bottom: 0; /* Adjust this value as needed */
} }