diff --git a/src/components/settings_modal/settings_modal_content.scss b/src/components/settings_modal/settings_modal_content.scss index f066234c846abd05d5dbafa397714bc3e58877c6..81ab434b6bee850ff6c7bef6b8e6cef8d82fdcfc 100644 --- a/src/components/settings_modal/settings_modal_content.scss +++ b/src/components/settings_modal/settings_modal_content.scss @@ -7,13 +7,24 @@ margin: 1em 1em 1.4em; padding-bottom: 1.4em; - > div { + > div, + > label { + display: block; margin-bottom: .5em; &:last-child { margin-bottom: 0; } } + .select-multiple { + display: flex; + + .option-list { + margin: 0; + padding-left: .5em; + } + } + &:last-child { border-bottom: none; padding-bottom: 0; diff --git a/src/components/settings_modal/tabs/filtering_tab.vue b/src/components/settings_modal/tabs/filtering_tab.vue index fb5fc37522991920a98a644c9478e69bbcefa8c8..dbd8d9aff18f2d004cbd473e5df9ef6daa160ec2 100644 --- a/src/components/settings_modal/tabs/filtering_tab.vue +++ b/src/components/settings_modal/tabs/filtering_tab.vue @@ -72,12 +72,3 @@ </div> </template> <script src="./filtering_tab.js"></script> -<style lang="scss"> -.select-multiple { - display: flex; - .option-list { - margin: 0; - padding-left: .5em; - } -} -</style>