@app-studio/web 0.7.6 → 0.7.7
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/dist/web.esm.js
CHANGED
|
@@ -958,7 +958,7 @@ var ButtonView = function ButtonView(_ref) {
|
|
|
958
958
|
filled: {
|
|
959
959
|
// Defines CSS properties for 'link' variant of the button with conditional styles based on reverse state, includes text decoration.
|
|
960
960
|
backgroundColor: reverse ? 'transparent' : buttonColor,
|
|
961
|
-
color: reverse ? isLight ?
|
|
961
|
+
color: reverse ? isLight ? 'white' : buttonColor : isLight ? buttonColor : 'white',
|
|
962
962
|
borderWidth: 1,
|
|
963
963
|
borderStyle: 'solid',
|
|
964
964
|
borderColor: reverse ? buttonColor : 'transparent'
|
|
@@ -985,7 +985,7 @@ var ButtonView = function ButtonView(_ref) {
|
|
|
985
985
|
},
|
|
986
986
|
ghost: {
|
|
987
987
|
backgroundColor: reverse ? buttonColor : 'transparent',
|
|
988
|
-
color: reverse ? '
|
|
988
|
+
color: reverse ? 'white' : buttonColor,
|
|
989
989
|
borderWidth: 1,
|
|
990
990
|
borderStyle: 'solid',
|
|
991
991
|
borderColor: reverse ? buttonColor : 'transparent'
|