mirror of
https://github.com/cheeaun/phanpy.git
synced 2024-12-30 06:08:14 +03:00
27 lines
558 B
CSS
27 lines
558 B
CSS
|
@media (min-width: 23em) {
|
||
|
.nav-menu {
|
||
|
display: flex;
|
||
|
width: auto;
|
||
|
padding: 0;
|
||
|
/* 1px background image */
|
||
|
background-image: linear-gradient(
|
||
|
to right,
|
||
|
var(--divider-color),
|
||
|
var(--divider-color)
|
||
|
);
|
||
|
background-size: 1px 1px;
|
||
|
background-repeat: repeat-y;
|
||
|
background-position: center;
|
||
|
}
|
||
|
.nav-menu section {
|
||
|
width: 50%;
|
||
|
padding: 8px 0;
|
||
|
}
|
||
|
.nav-menu section:last-child > .szh-menu__divider:first-child {
|
||
|
display: none;
|
||
|
}
|
||
|
.nav-menu .szh-menu__item span {
|
||
|
white-space: normal;
|
||
|
}
|
||
|
}
|