We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7f11cc commit cde44b2Copy full SHA for cde44b2
1 file changed
src/components/CategoryListEvent.vue
@@ -52,20 +52,24 @@
52
class="icon"
53
/>
54
55
- <CategoryListEventPreview
56
- :json="json"
57
- />
+ <p>{{ json.description }}</p>
58
59
- <button @click="selectList">
60
- Select
61
- </button>
+ <div class="button-group">
+ <CategoryListEventPreview
+ :json="json"
+ />
62
63
- <p>{{ json.description }}</p>
+ <button @click="selectList">
+ Select
64
+ </button>
65
+ </div>
66
</li>
67
</template>
68
69
<style scoped>
70
.category-list {
71
+ display: flex;
72
+ flex-direction: column;
73
padding: 0.8em;
74
text-align: center;
75
background-color: color-mix(in srgb, var(--background-color) 40%, var(--custom-color));
@@ -78,7 +82,10 @@
78
82
79
83
.icon {
80
84
margin: 0 auto;
81
- margin-bottom: 0.8em;
85
+ }
86
+
87
+ .button-group {
88
+ margin-top: auto;
89
}
90
91
button {
0 commit comments