mirror of
https://github.com/anomalyco/opencode.git
synced 2026-07-23 02:36:57 -04:00
21 lines
407 B
CSS
21 lines
407 B
CSS
[data-component="check"] {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
color: var(--oc-text-base);
|
|
font-size: 13px;
|
|
user-select: none;
|
|
}
|
|
|
|
[data-component="check"] :is(input[type="checkbox"], input[type="radio"]) {
|
|
width: 16px;
|
|
height: 16px;
|
|
margin: 0;
|
|
accent-color: var(--oc-bg-accent);
|
|
}
|
|
|
|
[data-component="check"]:has(input:disabled) {
|
|
opacity: 0.5;
|
|
cursor: not-allowed;
|
|
}
|