_header.scss 782 B

1234567891011121314151617181920212223242526272829303132
  1. .wp-site-blocks .site-header {
  2. // Needed until Gutenberg offers responsive design options
  3. // TODO: Ref to responsive design options issue
  4. @include break-small-only(){
  5. .site-brand {
  6. display: contents;
  7. }
  8. .wp-block-site-logo {
  9. flex-basis: 100%;
  10. margin-bottom: calc( 2 * var(--wp--custom--gap--vertical));
  11. margin-top: var(--wp--custom--gap--vertical);
  12. text-align: center;
  13. }
  14. }
  15. // User for Social Navigation ?
  16. // TODO: Ref to issue
  17. .wp-block-navigation__responsive-container-content {
  18. gap: var( --wp--style--block-gap, 2em );
  19. }
  20. }
  21. // Needed until Gutenberg offers responsive design options
  22. // Used by 'header-linear' template part
  23. .wp-site-blocks .site-header-linear {
  24. @include break-small-only(){
  25. .site-words-stack-small {
  26. display:block;
  27. }
  28. }
  29. }