mirror of
https://gitea.toothfairyai.com/ToothFairyAI/tf_code.git
synced 2026-03-31 06:12:26 +00:00
18 lines
376 B
CSS
18 lines
376 B
CSS
[data-component="inline-input"] {
|
|
color: inherit;
|
|
background: transparent;
|
|
border: 0;
|
|
border-radius: var(--radius-md);
|
|
padding: 0;
|
|
min-width: 0;
|
|
font: inherit;
|
|
letter-spacing: inherit;
|
|
line-height: inherit;
|
|
box-sizing: border-box;
|
|
|
|
&:focus {
|
|
outline: none;
|
|
box-shadow: var(--inline-input-shadow, 0 0 0 1px var(--border-interactive-focus));
|
|
}
|
|
}
|