MrB4RC0D3

table.css

May 1st, 2024
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.40 KB | Source Code | 0 0
  1. .header {
  2.   position: sticky;
  3.   top: 0;
  4.   background-color: var(--ww-background-color-primary);
  5.   transition: box-shadow 150ms ease;
  6.  
  7.   &::after {
  8.     content: '';
  9.     position: absolute;
  10.     left: 0;
  11.     right: 0;
  12.     bottom: 0;
  13.     border-bottom: rem(1px) solid light-dark(var(--mantine-color-gray-2), var(--mantine-color-dark-3));
  14.   }
  15. }
  16.  
  17. .scrolled {
  18.   box-shadow: var(--mantine-shadow-sm);
  19. }
Advertisement
Add Comment
Please, Sign In to add comment