changed css to remove and add some stuffs

This commit is contained in:
Lucy 2025-05-01 16:23:14 +00:00
parent 36aa6ca88f
commit 4c8374801d
3 changed files with 20 additions and 5 deletions

@ -1 +1 @@
Subproject commit 545140b92e47568b0a14268c8923301034d7f593 Subproject commit 0e0887535b6658adb965cb575c683bcc1fabb882

View file

@ -6,7 +6,11 @@ export const sharedPageComponents: SharedLayout = {
head: Component.Head(), head: Component.Head(),
header: [], header: [],
afterBody: [], afterBody: [],
footer: Component.Spacer(), footer: Component.Footer({
links: {
Code: "https://git.schaffenburg.org/byte/speisekarten-quartz",
},
}),
} }
// components for pages that display a single page (e.g. a single note) // components for pages that display a single page (e.g. a single note)
@ -29,14 +33,11 @@ export const defaultContentPageLayout: PageLayout = {
Component: Component.Search(), Component: Component.Search(),
grow: true, grow: true,
}, },
{ Component: Component.Darkmode() },
{ Component: Component.ReaderMode() },
], ],
}), }),
Component.Explorer(), Component.Explorer(),
], ],
right: [ right: [
Component.Graph(),
Component.DesktopOnly(Component.TableOfContents()), Component.DesktopOnly(Component.TableOfContents()),
Component.Backlinks(), Component.Backlinks(),
], ],

View file

@ -38,3 +38,17 @@ display: none;
body:has(.page-header ~ article.hideDate) .content-meta { body:has(.page-header ~ article.hideDate) .content-meta {
display: none; display: none;
} }
.popover-hint div.table-container table thead tr {
color: var(--secondary);
}
.popover-hint div.table-container table tbody tr {
border-bottom: 1px solid var(--secondary);
}
.popover-hint div.table-container table thead tr th {
border-bottom: 2px solid var(--secondary);
}
.popover-hint h2 {
color: var(--secondary);
}