1
0
mirror of https://github.com/beestat/app.git synced 2025-07-09 03:04:07 -04:00

Fixed a couple of spacing bugs

This commit is contained in:
Jon Ziebell 2022-12-07 19:10:26 -05:00
parent c516a93d3a
commit e7bdd175b2
2 changed files with 12 additions and 0 deletions

View File

@ -95,6 +95,9 @@ beestat.component.modal.change_system_type.prototype.decorate_contents_ = functi
tile_group.add_tile(button);
});
tile_group.style({
'margin-bottom': `${beestat.style.size.gutter}px`
});
tile_group.render(parent);
}
};

View File

@ -32,6 +32,9 @@ beestat.component.modal.create_floor_plan.prototype.decorate_contents_ = functio
.set_requirements({
'required': true
})
.style({
'margin-bottom': `${beestat.style.size.gutter}px`
})
.render(parent);
name_input.addEventListener('change', function() {
@ -62,6 +65,9 @@ beestat.component.modal.create_floor_plan.prototype.decorate_contents_ = functio
'type': 'integer',
'required': true
})
.style({
'margin-bottom': `${beestat.style.size.gutter}px`
})
.render($(floor_container));
floor_count_input.addEventListener('change', function() {
@ -106,6 +112,9 @@ beestat.component.modal.create_floor_plan.prototype.decorate_contents_ = functio
'type': 'decimal',
'required': true
})
.style({
'margin-bottom': `${beestat.style.size.gutter}px`
})
.render(parent);
ceiling_height_input.addEventListener('change', function() {