mirror of
https://code.lenaisten.de/Lenaisten/advent22.git
synced 2024-11-23 00:03:07 +00:00
BulmaDrawer bottom margin
This commit is contained in:
parent
6f73440160
commit
4684df16f9
2 changed files with 8 additions and 9 deletions
|
@ -98,9 +98,3 @@ import BulmaDrawer from "./bulma/Drawer.vue";
|
|||
})
|
||||
export default class extends Vue {}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
div.card:not(:last-child) {
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
</style>
|
||||
|
|
|
@ -36,8 +36,13 @@ export default class extends Vue {
|
|||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
div.card > .card-header {
|
||||
cursor: pointer;
|
||||
<style lang="scss" scoped>
|
||||
div.card {
|
||||
&:not(:last-child) {
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
> .card-header {
|
||||
cursor: pointer;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
|
Loading…
Reference in a new issue