@saasmakers/ui 0.1.80 → 0.1.81
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -90,7 +90,7 @@ function onClose(event: MouseEvent) {
|
|
|
90
90
|
:size="size"
|
|
91
91
|
/>
|
|
92
92
|
|
|
93
|
-
<div class="flex flex-1 flex-col normal-case">
|
|
93
|
+
<div class="flex flex-1 flex-col font-semibold normal-case">
|
|
94
94
|
<div
|
|
95
95
|
class="rounded-2xl text-left transition duration-300"
|
|
96
96
|
:class="{
|
|
@@ -103,10 +103,10 @@ function onClose(event: MouseEvent) {
|
|
|
103
103
|
'px-5 py-4 text-base leading-7 sm:text-lg sm:leading-8': size === 'base',
|
|
104
104
|
'border': status,
|
|
105
105
|
'text-black dark:text-white': !status,
|
|
106
|
-
'border-red-
|
|
107
|
-
'border-indigo-
|
|
108
|
-
'border-green-
|
|
109
|
-
'border-orange-
|
|
106
|
+
'border-red-600 dark:border-red-400 text-red-600 dark:text-red-400': status === 'error',
|
|
107
|
+
'border-indigo-600 dark:border-indigo-400 text-indigo-600 dark:text-indigo-400': status === 'info',
|
|
108
|
+
'border-green-600 dark:border-green-400 text-green-600 dark:text-green-400': status === 'success',
|
|
109
|
+
'border-orange-600 dark:border-orange-400 text-orange-600 dark:text-orange-400': status === 'warning',
|
|
110
110
|
}"
|
|
111
111
|
@click="onBubbleClick"
|
|
112
112
|
>
|