1
0
Fork 0

Accidentally broke CopyableInputBox style.

This commit is contained in:
Kitteh 2021-05-09 12:39:31 +01:00
parent e16ef675cb
commit a7d415a074

View file

@ -29,7 +29,7 @@ export function CopyableInputBox(text: string, copyable = true): CopyableInputBo
const inputBoxInput = makeElement({
tag: "input",
class: ["uk-input-copyable"],
class: ["uk-input", "uk-input-copyable"],
attributes: { "readonly": true, "type": "text" },
});