fix for filtering tab

This commit is contained in:
Henry Jameson 2021-03-11 17:00:58 +02:00
parent 1f0ac68fcd
commit 8e88d8110b
2 changed files with 12 additions and 10 deletions

View File

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

View File

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