feat: moved some card.scss styles to the card.vue component
This commit is contained in:
@ -54,3 +54,25 @@ export default {
|
||||
emits: ['close'],
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.card {
|
||||
background-color: $white;
|
||||
border-radius: $radius;
|
||||
margin-bottom: 1rem;
|
||||
border: 1px solid $grey-200;
|
||||
box-shadow: $shadow-sm;
|
||||
}
|
||||
|
||||
.card-header {
|
||||
box-shadow: none;
|
||||
border-bottom: 1px solid $grey-200;
|
||||
border-radius: $radius $radius 0 0;
|
||||
}
|
||||
|
||||
// FIXME: should maybe be merged somehow with modal
|
||||
::v-deep.modal-card-foot {
|
||||
background-color: $grey-50;
|
||||
border-top: 0;
|
||||
}
|
||||
</style>
|
Reference in New Issue
Block a user