this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Make nav menu look a bit nicer

+11 -11
+11 -11
src/components/nav-menu.css
··· 3 3 display: flex; 4 4 width: auto; 5 5 padding: 0; 6 - /* 1px background image */ 7 - background-image: linear-gradient( 8 - to right, 9 - var(--divider-color), 10 - var(--divider-color) 11 - ); 12 - background-size: 1px 1px; 13 - background-repeat: repeat-y; 14 - background-position: center; 15 6 } 16 7 .nav-menu section { 17 - width: 50%; 18 8 padding: 8px 0; 19 9 } 10 + .nav-menu section:last-child { 11 + background-color: var(--bg-faded-color); 12 + background-image: linear-gradient( 13 + to right, 14 + var(--divider-color) 1px, 15 + transparent 1px 16 + ), 17 + linear-gradient(to bottom, var(--bg-blur-color), transparent); 18 + box-shadow: inset 0 0 1px var(--bg-color); 19 + } 20 20 .nav-menu section:last-child > .szh-menu__divider:first-child { 21 21 display: none; 22 22 } 23 - .nav-menu .szh-menu__item span { 23 + .nav-menu section:last-child .szh-menu__item span { 24 24 white-space: normal; 25 25 } 26 26 }