bugfix: Fixing CSS class name convention

This commit is contained in:
jamesread 2022-10-21 15:21:07 +01:00
parent 984dae7450
commit 8e59ac9fb4
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -282,7 +282,7 @@ input[name="start"]:hover {
background-color: #aceaac;
}
span.inputDescription {
span.argument-description {
margin-left: 1em;
}