@weni/unnnic-system 3.26.1 → 3.27.1

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@weni/unnnic-system",
3
- "version": "3.26.1",
3
+ "version": "3.27.1",
4
4
  "type": "commonjs",
5
5
  "files": [
6
6
  "dist",
@@ -244,14 +244,5 @@ const back = () => {
244
244
  padding: $unnnic-spacing-md $unnnic-spacing-md 0 $unnnic-spacing-md;
245
245
  flex: 1 0 0;
246
246
  }
247
-
248
- .unnnic-drawer__footer {
249
- display: flex;
250
- padding: $unnnic-spacing-md;
251
- gap: $unnnic-spacing-ant;
252
- > * {
253
- flex-grow: 1;
254
- }
255
- }
256
247
  }
257
248
  </style>
@@ -172,22 +172,25 @@ onUnmounted(() => {
172
172
 
173
173
  &--informational {
174
174
  border-color: $unnnic-color-border-info;
175
- background-color: $unnnic-color-bg-info;
175
+ background: linear-gradient($unnnic-color-bg-info), $unnnic-color-bg-base;
176
176
  }
177
177
 
178
178
  &--attention {
179
179
  border-color: $unnnic-color-border-warning;
180
- background-color: $unnnic-color-bg-warning;
180
+ background:
181
+ linear-gradient($unnnic-color-bg-warning), $unnnic-color-bg-base;
181
182
  }
182
183
 
183
184
  &--success {
184
185
  border-color: $unnnic-color-border-success;
185
- background-color: $unnnic-color-bg-success;
186
+ background:
187
+ linear-gradient($unnnic-color-bg-success), $unnnic-color-bg-base;
186
188
  }
187
189
 
188
190
  &--error {
189
191
  border-color: $unnnic-color-border-critical;
190
- background-color: $unnnic-color-bg-critical;
192
+ background:
193
+ linear-gradient($unnnic-color-bg-critical), $unnnic-color-bg-base;
191
194
  }
192
195
 
193
196
  &__content,
@@ -33,7 +33,7 @@ const props = withDefaults(
33
33
 
34
34
  .unnnic-dialog-footer {
35
35
  display: flex;
36
- justify-content: center;
36
+ justify-content: flex-end;
37
37
  align-items: center;
38
38
  gap: $unnnic-space-2;
39
39
 
@@ -42,9 +42,5 @@ const props = withDefaults(
42
42
  &--with-divider {
43
43
  border-top: 1px solid $unnnic-color-border-soft;
44
44
  }
45
-
46
- > * {
47
- width: 100%;
48
- }
49
45
  }
50
46
  </style>
@@ -27,12 +27,8 @@ const props = defineProps<{
27
27
  padding: $unnnic-space-6;
28
28
 
29
29
  display: flex;
30
- justify-content: center;
30
+ justify-content: flex-end;
31
31
  align-items: center;
32
32
  gap: $unnnic-space-2;
33
-
34
- > * {
35
- width: 100%;
36
- }
37
33
  }
38
34
  </style>