_full-site-editing.scss 943 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. @import "../../varia/sass/full-site-editing/imports";
  2. $spacing_vertical: map-deep-get($config-global, "spacing", "vertical");
  3. $spacing_unit: map-deep-get($config-global, "spacing", "unit");
  4. .fse-enabled.home.page.hide-homepage-title .fse-header.entry-content {
  5. padding-bottom: $spacing_vertical;
  6. @include media(mobile) {
  7. padding-bottom: #{1.5 * $spacing_vertical};
  8. }
  9. }
  10. .fse-template-part {
  11. .site-title + .site-description {
  12. margin-top: #{0.5 * $spacing_unit};
  13. }
  14. .main-navigation {
  15. @extend #site-navigation;
  16. .has-background > .main-menu.footer-menu {
  17. padding: 0;
  18. }
  19. .has-text-color ul.main-menu > li:after {
  20. color: inherit;
  21. }
  22. }
  23. @include media(mobile-only) {
  24. max-width: calc( 100% - #{ $spacing_vertical } );
  25. .main-navigation > div {
  26. padding: 0 32px;
  27. }
  28. }
  29. .wp-block-cover,
  30. .wp-block-cover-image {
  31. .site-title a {
  32. text-decoration: none;
  33. }
  34. .has-background {
  35. text-shadow: none;
  36. }
  37. }
  38. }