summaryrefslogtreecommitdiffhomepage
path: root/packages/css/src/utilities.css
blob: 213a51680735e98914d88393ae55fa708f1f7cfc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
:root {
  interpolate-size: allow-keywords;
}

.no-scrollbar {
  &::-webkit-scrollbar {
    display: none;
  }
  /* Hide scrollbar for IE, Edge and Firefox */
  & {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
  }
}