bugfix: Fixing CSS class name convention
This commit is contained in:
parent
984dae7450
commit
8e59ac9fb4
|
|
@ -133,7 +133,7 @@ class ArgumentForm extends window.HTMLElement {
|
|||
|
||||
createDomDescription (arg) {
|
||||
const domArgumentDescription = document.createElement('span')
|
||||
domArgumentDescription.classList.add('inputDescription')
|
||||
domArgumentDescription.classList.add('argument-description')
|
||||
domArgumentDescription.innerText = arg.description
|
||||
|
||||
return domArgumentDescription
|
||||
|
|
|
|||
|
|
@ -282,7 +282,7 @@ input[name="start"]:hover {
|
|||
background-color: #aceaac;
|
||||
}
|
||||
|
||||
span.inputDescription {
|
||||
span.argument-description {
|
||||
margin-left: 1em;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue