summaryrefslogtreecommitdiffhomepage
path: root/packages/ui/src/styles/tailwind/utilities.css
blob: fbb407b1d6a02ca7ff06e691ce88620f16301922 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
@utility no-scrollbar {
  &::-webkit-scrollbar {
    display: none;
  }
  & {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
  }
}

@utility truncate-start {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  direction: rtl;
  text-align: left;
}