mirror of
https://github.com/sst/opencode.git
synced 2025-12-23 10:11:41 +00:00
Co-authored-by: GitHub Action <action@github.com> Co-authored-by: Adam <2363879+adamdotdevin@users.noreply.github.com>
23 lines
500 B
CSS
23 lines
500 B
CSS
[data-component="input"] {
|
|
/* [data-slot="input-label"] {} */
|
|
|
|
[data-slot="input-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);
|
|
}
|
|
}
|
|
}
|