_header.scss 417 B

1234567891011121314151617181920212223242526
  1. header{
  2. display: block;
  3. width: 100%;
  4. background-color: white;
  5. position: fixed;
  6. z-index: 99;
  7. width: 100vw;
  8. position: -webkit-sticky;
  9. position: sticky;
  10. top: 0;
  11. .sticky{
  12. position: fixed;
  13. }
  14. div{
  15. display:flex;
  16. flex-direction: row;
  17. }
  18. }