summaryrefslogtreecommitdiffhomepage
path: root/packages/ui/src/components/list.css
diff options
context:
space:
mode:
authorDax <[email protected]>2025-11-21 20:41:27 -0500
committerGitHub <[email protected]>2025-11-21 20:41:27 -0500
commit49408c00e964093c654ee270d545c0e29857e61f (patch)
tree600b2a94cd082c0af221fd84fd5346cfe8f9ace4 /packages/ui/src/components/list.css
parent76192fbcedff945b5d529a5d733deb2488ee9c8a (diff)
downloadopencode-49408c00e964093c654ee270d545c0e29857e61f.tar.gz
opencode-49408c00e964093c654ee270d545c0e29857e61f.zip
enterprise (#4617)
Co-authored-by: GitHub Action <[email protected]> Co-authored-by: Adam <[email protected]>
Diffstat (limited to 'packages/ui/src/components/list.css')
-rw-r--r--packages/ui/src/components/list.css30
1 files changed, 0 insertions, 30 deletions
diff --git a/packages/ui/src/components/list.css b/packages/ui/src/components/list.css
deleted file mode 100644
index 2136c4f92..000000000
--- a/packages/ui/src/components/list.css
+++ /dev/null
@@ -1,30 +0,0 @@
-[data-component="list"] {
- /* overflow-y: auto; */
-
- /* Hide scrollbar */
- &::-webkit-scrollbar {
- display: none;
- }
- -ms-overflow-style: none;
- scrollbar-width: none;
-
- [data-slot="item"] {
- width: 100%;
- margin-bottom: 6px;
- padding: 4px 12px;
- text-align: left;
-
- border-radius: var(--radius-md);
- transition: background-color 0.2s ease-in-out;
-
- &[data-active="true"] {
- background-color: var(--surface-raised-base-hover);
- }
- &:hover {
- background-color: var(--surface-raised-base-hover);
- }
- &:focus {
- outline: none;
- }
- }
-}