25 lines
426 B
CSS
25 lines
426 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;
|
|
}
|