@melodicdev/components 1.5.3 → 1.5.4
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/assets/melodic-components.js +6 -2
- package/assets/melodic-components.js.map +1 -1
- package/assets/melodic-components.min.js +6 -2
- package/lib/components/pages/auth/auth-layout.styles.d.ts +1 -1
- package/lib/components/pages/auth/auth-layout.styles.d.ts.map +1 -1
- package/lib/components/pages/auth/auth-layout.styles.js +6 -2
- package/package.json +1 -1
|
@@ -22740,6 +22740,8 @@ const authLayoutCss = `
|
|
|
22740
22740
|
|
|
22741
22741
|
/* Split variant */
|
|
22742
22742
|
--ml-auth-split-padding: var(--ml-space-10);
|
|
22743
|
+
--ml-auth-split-form-padding: var(--ml-auth-split-padding);
|
|
22744
|
+
--ml-auth-split-brand-padding: var(--ml-auth-split-padding);
|
|
22743
22745
|
--ml-auth-split-form-bg: var(--ml-color-surface);
|
|
22744
22746
|
--ml-auth-split-brand-bg: var(--ml-color-primary);
|
|
22745
22747
|
--ml-auth-split-brand-color: var(--ml-color-text-inverse);
|
|
@@ -22811,7 +22813,7 @@ const authLayoutCss = `
|
|
|
22811
22813
|
align-items: center;
|
|
22812
22814
|
justify-content: center;
|
|
22813
22815
|
flex: 1;
|
|
22814
|
-
padding: var(--ml-auth-split-padding);
|
|
22816
|
+
padding: var(--ml-auth-split-form-padding);
|
|
22815
22817
|
background-color: var(--ml-auth-split-form-bg);
|
|
22816
22818
|
}
|
|
22817
22819
|
|
|
@@ -22825,7 +22827,7 @@ const authLayoutCss = `
|
|
|
22825
22827
|
align-items: center;
|
|
22826
22828
|
justify-content: center;
|
|
22827
22829
|
flex: 1;
|
|
22828
|
-
padding: var(--ml-auth-split-padding);
|
|
22830
|
+
padding: var(--ml-auth-split-brand-padding);
|
|
22829
22831
|
background-color: var(--ml-auth-split-brand-bg);
|
|
22830
22832
|
color: var(--ml-auth-split-brand-color);
|
|
22831
22833
|
position: relative;
|
|
@@ -22836,6 +22838,8 @@ const authLayoutCss = `
|
|
|
22836
22838
|
position: relative;
|
|
22837
22839
|
z-index: 1;
|
|
22838
22840
|
text-align: center;
|
|
22841
|
+
width: 100%;
|
|
22842
|
+
height: 100%;
|
|
22839
22843
|
max-width: var(--ml-auth-split-brand-max-width);
|
|
22840
22844
|
}
|
|
22841
22845
|
|