diff options
| author | Adam <[email protected]> | 2025-10-22 17:31:44 -0500 |
|---|---|---|
| committer | Adam <[email protected]> | 2025-10-22 17:31:49 -0500 |
| commit | 89b703c387aed3ee918d826b788b4be1729bdde9 (patch) | |
| tree | 9a22d26bfc5e921789924e2344d04113660b67a3 /packages/ui/src/components/input.css | |
| parent | eff12cb48453e45590a53a7705c5044a0da9e7f7 (diff) | |
| download | opencode-89b703c387aed3ee918d826b788b4be1729bdde9.tar.gz opencode-89b703c387aed3ee918d826b788b4be1729bdde9.zip | |
wip: desktop work
Diffstat (limited to 'packages/ui/src/components/input.css')
| -rw-r--r-- | packages/ui/src/components/input.css | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/packages/ui/src/components/input.css b/packages/ui/src/components/input.css new file mode 100644 index 000000000..24cec19c5 --- /dev/null +++ b/packages/ui/src/components/input.css @@ -0,0 +1,23 @@ +[data-component="input"] { + /* [data-slot="label"] {} */ + + [data-slot="input"] { + color: var(--text-strong); + + /* text-14-regular */ + font-family: var(--font-family-sans); + font-size: 14px; + font-style: normal; + font-weight: var(--font-weight-regular); + line-height: var(--line-height-large); /* 142.857% */ + letter-spacing: var(--letter-spacing-normal); + + &:focus { + outline: none; + } + + &::placeholder { + color: var(--text-weak); + } + } +} |
