fix: prevent header nav text wrapping in Frankfurt theme
Deploy Slides / build-and-deploy (push) Successful in 1m34s

This commit is contained in:
2026-05-31 00:13:56 +08:00
parent 874ccbdcc7
commit c81701d440
+6 -2
View File
@@ -1,14 +1,18 @@
/* Fix header navigation overflow in Frankfurt theme */
header {
overflow: hidden;
}
header .flex-1 {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
min-width: 0;
max-width: 150px;
}
header .flex-1 > div:first-child {
header .flex-1 > div {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
font-size: 0.75rem;
}