css fixes
This commit is contained in:
parent
72a918b706
commit
ba4605476a
2 changed files with 7 additions and 1 deletions
|
@ -851,6 +851,9 @@ class Options implements OptionsElement<void>{
|
|||
generateHTML(): HTMLElement{
|
||||
const div = document.createElement("div");
|
||||
div.classList.add("flexttb","titlediv");
|
||||
if(this.owner instanceof Options){
|
||||
div.classList.add("optionElement");
|
||||
}
|
||||
const title = document.createElement("h2");
|
||||
title.textContent = this.name;
|
||||
div.append(title);
|
||||
|
|
|
@ -1812,8 +1812,11 @@ fieldset input[type="radio"] {
|
|||
overflow: hidden;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
.flexltr > .optionElement{
|
||||
margin: 16px 6px 0 0px;
|
||||
}
|
||||
.optionElement:has(.optionElement) {
|
||||
margin: 0;
|
||||
/* margin: 0; */
|
||||
}
|
||||
.optionElement:has(.Buttons) {
|
||||
height: 100%;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue