@vsn-ux/gaia-styles 0.2.1 → 0.2.2

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.
@@ -575,6 +575,9 @@
575
575
  display: flex;
576
576
  flex-direction: column;
577
577
  gap: calc(0.4rem * 2);
578
+ > * {
579
+ width: 100%;
580
+ }
578
581
  .ga-form-field__label {
579
582
  padding-inline: calc(0.4rem * 1);
580
583
  font-size: var(--ga-size-font-md);
@@ -575,6 +575,9 @@
575
575
  display: flex;
576
576
  flex-direction: column;
577
577
  gap: calc(0.25rem * 2);
578
+ > * {
579
+ width: 100%;
580
+ }
578
581
  .ga-form-field__label {
579
582
  padding-inline: calc(0.25rem * 1);
580
583
  font-size: var(--ga-size-font-md);
package/dist/all.css CHANGED
@@ -718,6 +718,9 @@
718
718
  display: flex;
719
719
  flex-direction: column;
720
720
  gap: calc(0.25rem * 2);
721
+ > * {
722
+ width: 100%;
723
+ }
721
724
  .ga-form-field__label {
722
725
  padding-inline: calc(0.25rem * 1);
723
726
  font-size: var(--ga-size-font-md);
@@ -3,6 +3,9 @@
3
3
  display: flex;
4
4
  flex-direction: column;
5
5
  gap: calc(0.25rem * 2);
6
+ > * {
7
+ width: 100%;
8
+ }
6
9
  .ga-form-field__label {
7
10
  padding-inline: calc(0.25rem * 1);
8
11
  font-size: var(--ga-size-font-md);
@@ -394,6 +394,9 @@
394
394
  display: flex;
395
395
  flex-direction: column;
396
396
  gap: calc(0.25rem * 2);
397
+ > * {
398
+ width: 100%;
399
+ }
397
400
  .ga-form-field__label {
398
401
  padding-inline: calc(0.25rem * 1);
399
402
  font-size: var(--ga-size-font-md);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vsn-ux/gaia-styles",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "dev": "storybook dev -p 6006",
@@ -1,6 +1,10 @@
1
1
  .ga-form-field {
2
2
  @apply flex flex-col gap-2;
3
3
 
4
+ > * {
5
+ @apply w-full;
6
+ }
7
+
4
8
  .ga-form-field__label {
5
9
  @apply text-md px-1 leading-5 font-medium;
6
10
  }