15 lines
291 B
CSS
15 lines
291 B
CSS
|
|
/* Fix header navigation overflow in Frankfurt theme */
|
||
|
|
header .flex-1 {
|
||
|
|
overflow: hidden;
|
||
|
|
text-overflow: ellipsis;
|
||
|
|
white-space: nowrap;
|
||
|
|
min-width: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
header .flex-1 > div:first-child {
|
||
|
|
overflow: hidden;
|
||
|
|
text-overflow: ellipsis;
|
||
|
|
white-space: nowrap;
|
||
|
|
font-size: 0.75rem;
|
||
|
|
}
|