_footer.scss 344 B

1234567891011121314151617
  1. .home {
  2. .site-footer.wp-block-group {
  3. position: relative;
  4. overflow: visible;
  5. &:before {
  6. content: "";
  7. background-color: var(--wp--custom--color--secondary);
  8. clip-path: polygon(41vw 49vw, 100vw 68vw, 100vw 100vw, 18vw 100vw);
  9. position: absolute;
  10. height: 100vw;
  11. bottom: 0;
  12. left: 0;
  13. right: 0;
  14. z-index: -1;
  15. }
  16. }
  17. }