Files
wonder f89f6aefdb
Deploy Slides / build-and-deploy (push) Successful in 1m19s
fix: add padding-top to prevent header overlapping content
2026-05-31 00:22:33 +08:00

30 lines
527 B
CSS

/* Fix header navigation overflow in Frankfurt theme */
header {
overflow: hidden;
}
header .flex-1 {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
min-width: 0;
padding: 0.15rem 0.25rem;
}
header .flex-1 > div:first-child {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
font-size: 0.7rem;
}
header .flex-1 > div:last-child {
font-size: 0.5rem;
line-height: 1;
}
/* Add padding to content area to avoid header overlap */
.slidev-layout {
padding-top: 2.5rem;
}