@vandeurenglenn/lite-elements 0.3.64 → 0.3.66
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/exports/bundle/button.js
CHANGED
|
@@ -36,7 +36,7 @@ import{_ as e,a as t}from"./tslib.es6-B87RQr7F.js";import{r as o,i as a,x as s,s
|
|
|
36
36
|
|
|
37
37
|
.label {
|
|
38
38
|
flex: 1;
|
|
39
|
-
text-align:
|
|
39
|
+
text-align: center;
|
|
40
40
|
}
|
|
41
41
|
|
|
42
42
|
.label,
|
|
@@ -121,6 +121,7 @@ import{_ as e,a as t}from"./tslib.es6-B87RQr7F.js";import{r as o,i as a,x as s,s
|
|
|
121
121
|
:host([has-icon][has-label]) .label {
|
|
122
122
|
padding-left: 8px;
|
|
123
123
|
padding-right: 24px;
|
|
124
|
+
text-align: end;
|
|
124
125
|
}
|
|
125
126
|
:host([has-icon][has-label]) slot[name='icon']::slotted(*) {
|
|
126
127
|
padding-left: 16px;
|
package/exports/button.js
CHANGED
|
@@ -87,7 +87,7 @@ let CustomButton = (() => {
|
|
|
87
87
|
|
|
88
88
|
.label {
|
|
89
89
|
flex: 1;
|
|
90
|
-
text-align:
|
|
90
|
+
text-align: center;
|
|
91
91
|
}
|
|
92
92
|
|
|
93
93
|
.label,
|
|
@@ -172,6 +172,7 @@ let CustomButton = (() => {
|
|
|
172
172
|
:host([has-icon][has-label]) .label {
|
|
173
173
|
padding-left: 8px;
|
|
174
174
|
padding-right: 24px;
|
|
175
|
+
text-align: end;
|
|
175
176
|
}
|
|
176
177
|
:host([has-icon][has-label]) slot[name='icon']::slotted(*) {
|
|
177
178
|
padding-left: 16px;
|
package/exports/icon-button.js
CHANGED