diff --git a/components/BubbleTitle.vue b/components/BubbleTitle.vue index 0c941f4..f9050b6 100644 --- a/components/BubbleTitle.vue +++ b/components/BubbleTitle.vue @@ -12,6 +12,10 @@ const props = defineProps({ type: Boolean, default: true, }, + bubbleColor: { + type: String, + default: 'primary-500', + }, }) @@ -20,10 +24,10 @@ const props = defineProps({

{{ subtitle }}

-

+

{{ title }}

@@ -34,7 +38,8 @@ const props = defineProps({
diff --git a/components/GradientDivider.vue b/components/GradientDivider.vue index 9fb8051..fcb1c9c 100644 --- a/components/GradientDivider.vue +++ b/components/GradientDivider.vue @@ -4,13 +4,26 @@ const props = defineProps({ type: Boolean, default: false, }, + lineGradientFrom: { + type: String, + default: 'primary', + }, + lineGradientTo: { + type: String, + default: 'primary', + }, }) diff --git a/components/LoginNeededContent.vue b/components/LoginNeededContent.vue index 8e1452d..9570a3d 100644 --- a/components/LoginNeededContent.vue +++ b/components/LoginNeededContent.vue @@ -8,6 +8,10 @@ defineProps({ type: String, default: '', }, + needAdmin: { + type: Boolean, + default: false, + }, }) const modal = useModal() @@ -16,19 +20,24 @@ const modal = useModal()