We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6fd3321 commit 9de3bc1Copy full SHA for 9de3bc1
dist/js/card.js
resources/js/components/Card.vue
@@ -1,7 +1,7 @@
1
<template>
2
- <card class="flex flex-col justify-center" :class="cardClassList">
+ <card class="flex flex-col justify-center htmlCard" :class="cardClassList">
3
<div class="px-3 py-3">
4
- <section v-html="card.content">
+ <section v-html="card.content" class="htmlCard__content">
5
</section>
6
</div>
7
</card>
@@ -31,8 +31,15 @@
31
}
32
</script>
33
34
-<style scoped>
35
- p {
+<style>
+ .htmlCard__content > p {
36
margin-bottom: 1em;
37
38
</style>
39
+
40
+<style scoped>
41
+ .card-panel {
42
+ min-height: 150px;
43
+ height: auto;
44
+ }
45
+</style>
0 commit comments