_header.scss 529 B

1234567891011121314151617181920212223242526272829303132
  1. .layout-container{
  2. position: relative;
  3. width: 100vw;
  4. background-color: rgba(153, 147, 174, 0.1);
  5. header{
  6. display: block;
  7. width: 100%;
  8. background-color: white;
  9. position: fixed;
  10. z-index: 99;
  11. width: 100vw;
  12. position: -webkit-sticky;
  13. position: sticky;
  14. top: 0;
  15. .sticky{
  16. position: fixed;
  17. }
  18. div{
  19. display:flex;
  20. flex-direction: row;
  21. }
  22. }
  23. }