css fixes

This commit is contained in:
MathMan05 2024-11-27 21:06:43 -06:00
parent 72a918b706
commit ba4605476a
2 changed files with 7 additions and 1 deletions

View file

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

View file

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