diff options
| author | Adam <[email protected]> | 2025-10-14 07:14:26 -0500 |
|---|---|---|
| committer | Adam <[email protected]> | 2025-10-14 07:16:24 -0500 |
| commit | 37e6c8342f1f63a95918a71ac78130b9d10d1103 (patch) | |
| tree | f5baccd7d4d97a0171eb224c9f7d88ec62b14aac /packages/css/src/utilities.css | |
| parent | c04e8929911be2433063e9a53cccf8d2dfd232b8 (diff) | |
| download | opencode-37e6c8342f1f63a95918a71ac78130b9d10d1103.tar.gz opencode-37e6c8342f1f63a95918a71ac78130b9d10d1103.zip | |
wip: css and ui packages
Diffstat (limited to 'packages/css/src/utilities.css')
| -rw-r--r-- | packages/css/src/utilities.css | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/packages/css/src/utilities.css b/packages/css/src/utilities.css new file mode 100644 index 000000000..213a51680 --- /dev/null +++ b/packages/css/src/utilities.css @@ -0,0 +1,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 */ + } +} |
