ehscan-react-components 0.1.49 → 0.1.50
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/README.md +3 -0
- package/dist/style/button.module.css +5 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -3,15 +3,15 @@
|
|
|
3
3
|
display: inline-flex;
|
|
4
4
|
align-items: center;
|
|
5
5
|
justify-content: center;
|
|
6
|
-
gap: var(--ext-btn-gap, 0
|
|
6
|
+
gap: var(--ext-btn-gap, 0);
|
|
7
7
|
font-family: inherit;
|
|
8
8
|
font-size: var(--ext-btn-font-size, 1rem);
|
|
9
9
|
font-weight: var(--ext-btn-font-weight, 500);
|
|
10
10
|
color: var(--ext-btn-color, #fff);
|
|
11
|
-
background-color: var(--btn-bg, #007aff);
|
|
11
|
+
background-color: var(--ext-btn-bg, #007aff);
|
|
12
12
|
border: none;
|
|
13
|
-
border-radius: var(--ext-btn-radius,
|
|
14
|
-
padding: var(--ext-btn-padding, 5px
|
|
13
|
+
border-radius: var(--ext-btn-radius, 12px);
|
|
14
|
+
padding: var(--ext-btn-padding, 5px);
|
|
15
15
|
width: var(--ext-btn-width, fit-content);
|
|
16
16
|
height: var(--ext-btn-height, auto);
|
|
17
17
|
cursor: pointer;
|
|
@@ -90,7 +90,7 @@
|
|
|
90
90
|
Apply Ripple effect
|
|
91
91
|
---------------*/
|
|
92
92
|
.ApplyRipple {
|
|
93
|
-
box-shadow: var(--ripple-box-shadow, rgb(100 100 111 / 20%) 0px 7px 29px 0px
|
|
93
|
+
box-shadow: var(--ext-btn-ripple-box-shadow, none); /* rgb(100 100 111 / 20%) 0px 7px 29px 0px */
|
|
94
94
|
position: relative;
|
|
95
95
|
overflow: hidden;
|
|
96
96
|
display: flex;
|