tangled
alpha
login
or
join now
moth11.net
/
xcvr
2
fork
atom
frontend for xcvr appview
2
fork
atom
overview
issues
pulls
pipelines
finally fix the unset color of inputs
moth11.net
6 months ago
eda9ba11
58a6de81
+1
-1
1 changed file
expand all
collapse all
unified
split
src
lib
components
AutoGrowInput.svelte
+1
-1
src/lib/components/AutoGrowInput.svelte
···
53
53
onbeforeinput={onBeforeInput}
54
54
style:font-weight={bold ? "700" : "inherit"}
55
55
style:--theme={color}
56
56
+
style:color={color ? "var(--theme)" : ""}
56
57
style:--themep={hexToTransparent(color ?? "#ffffff")}
57
58
style:font-size={fs ?? "1rem"}
58
59
{placeholder}
···
60
61
61
62
<style>
62
63
input {
63
63
-
color: var(--theme);
64
64
background-color: transparent;
65
65
border: none;
66
66
}