@texturehq/edges 1.0.2 → 1.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4,10 +4,13 @@
4
4
  * Note: Animation utilities are in animations.css
5
5
  */
6
6
 
7
- /* Placeholder for future utility classes */
8
- /* Examples might include:
9
- - Layout utilities
10
- - Display utilities
11
- - Accessibility utilities
12
- - etc.
13
- */
7
+ /* Scrollbar hiding utility */
8
+ .scrollbar-hide {
9
+ /* Firefox */
10
+ scrollbar-width: none;
11
+
12
+ /* Safari and Chrome */
13
+ &::-webkit-scrollbar {
14
+ display: none;
15
+ }
16
+ }