12345678910111213141516171819202122232425262728293031323334 |
- // Needed until this is merged: https://github.com/WordPress/gutenberg/issues/35040
- .is-vertical.items-justified-right ul.wp-block-navigation__container {
- align-items: flex-end;
- }
- .wp-block-navigation.is-style-blockbase-navigation-improved-responsive {
- &.is-responsive .is-menu-open.wp-block-navigation__responsive-container {
- .wp-block-navigation__container {
- row-gap: 1rem;
- }
- .wp-block-navigation__responsive-container-content { // Needed for specificity to beat the navigation block CSS
- align-items: flex-start;
- .wp-block-navigation-item {
- row-gap: 0rem;
- > a:hover {
- text-decoration-line: underline;
- }
- &.current-menu-item > a {
- text-decoration: underline;
- }
- }
- }
- .wp-block-navigation__responsive-container-content {
- justify-content: space-between;
- }
- ul.wp-block-social-links {
- padding-bottom: calc( var(--wp--custom--gap--vertical) * 2 );
- }
- }
- }
|