Skip to content
Snippets Groups Projects
Commit 30ecbd0e authored by rhenck's avatar rhenck
Browse files

Make text fields and areas have transparent background by default

parent d48d1f98
No related branches found
No related tags found
No related merge requests found
......@@ -128,6 +128,7 @@ export function createTextfieldElement(): TextFieldElement {
...createInputUIElement('Beispiel Beschriftung', ''),
...createTextUIElement(),
...createSurfaceUIElement(),
backgroundColor: 'transparent',
height: 100
};
}
......@@ -140,6 +141,7 @@ export function createTextareaElement(): TextAreaElement {
...createInputUIElement('Beispiel Beschriftung', ''),
...createTextUIElement(),
...createSurfaceUIElement(),
backgroundColor: 'transparent',
height: 120
};
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment