fix(site): first letter line-height on firefox

This commit is contained in:
Ayo 2023-12-11 17:01:13 +01:00
parent 01c9a4f170
commit 79ce197c8a

View file

@ -29,18 +29,21 @@
& section ul { & section ul {
list-style: publish-icons; list-style: publish-icons;
& li {
margin-bottom: 0.5em;
}
} }
& hr { & hr {
margin: 2em 0; margin: 2em 0;
} }
& section p:not(blockquote *):first-of-type::first-letter { & section p:not(blockquote *):first-of-type::first-letter {
font-weight: 900; font-weight: bold;
font-size: 2rem; font-size: 2rem;
line-height: 2rem; line-height: 1rem;
float: left; float: left;
color: var(--color-primary); color: var(--color-primary);
margin-top: -8px;
} }
} }
</style> </style>