BulmaDrawer bottom margin

This commit is contained in:
Jörn-Michael Miehe 2023-09-10 14:09:50 +00:00
parent 6f73440160
commit 4684df16f9
2 changed files with 8 additions and 9 deletions

View file

@ -98,9 +98,3 @@ import BulmaDrawer from "./bulma/Drawer.vue";
}) })
export default class extends Vue {} export default class extends Vue {}
</script> </script>
<style scoped>
div.card:not(:last-child) {
margin-bottom: 1.5rem;
}
</style>

View file

@ -36,8 +36,13 @@ export default class extends Vue {
} }
</script> </script>
<style scoped> <style lang="scss" scoped>
div.card > .card-header { div.card {
&:not(:last-child) {
margin-bottom: 1.5rem;
}
> .card-header {
cursor: pointer; cursor: pointer;
}
} }
</style> </style>