styling fixes for stacking order and overflow

This commit is contained in:
Jacky Zhao 2023-07-23 21:41:09 -07:00
parent 4811500b1b
commit 351b4ab13b
6 changed files with 16 additions and 12 deletions
quartz/components

View file

@ -48,7 +48,7 @@ export function PageList({ fileData, allFiles }: QuartzComponentProps) {
{tags.map((tag) => (
<li>
<a
class="internal"
class="internal tag-link"
href={resolveRelative(slug, `tags/${tag}` as CanonicalSlug)}
>
#{tag}
@ -68,4 +68,8 @@ PageList.css = `
.section h3 {
margin: 0;
}
.section > .tags {
margin: 0;
}
`