@everymatrix/cashier-error 1.28.3 → 1.28.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@everymatrix/cashier-error",
3
- "version": "1.28.3",
3
+ "version": "1.28.4",
4
4
  "main": "index.js",
5
5
  "svelte": "src/index.ts",
6
6
  "scripts": {
@@ -35,5 +35,5 @@
35
35
  "publishConfig": {
36
36
  "access": "public"
37
37
  },
38
- "gitHead": "c8de42d76db2aad5e40a16effced6d1f80df0354"
38
+ "gitHead": "1bfc13085b6829695a52b1569af671db1c024e41"
39
39
  }
@@ -91,7 +91,7 @@
91
91
  display: flex;
92
92
  flex-direction: column;
93
93
  align-items: center;
94
- gap: 20px;
94
+ gap: var(--emw--spacing-large, 20px);
95
95
  }
96
96
  .CashierErrorTitle {
97
97
  color: var(--emw--color-black, #000);
@@ -101,7 +101,7 @@
101
101
  text-align: center;
102
102
  }
103
103
  .CashierErrorText {
104
- color: var(--emw--color-gray-300, #666);
104
+ color: var(--mmw--color-grey-290, #666);
105
105
  font-weight: var(--emw--font-weight-normal, 400);
106
106
  font-size: var(--emw--font-size-x-small, 12px);
107
107
  line-height: 120%;
@@ -121,13 +121,13 @@
121
121
  font-style: normal;
122
122
  font-weight: var(--emw--font-weight-semibold, 500);
123
123
  line-height: 36px;;
124
- border-radius: 4px;
124
+ border-radius: var(--emw--border-radius-medium, 4px);
125
125
  background: var(--emw--color-primary, #7EC51E);
126
126
  &:hover {
127
- background: var(--emw--color-hover, #71B11B);
127
+ background: var(--mmw--color-main-button-hover, #71B11B);
128
128
  }
129
129
  &:active {
130
- background: var(--emw--color-active, #5C950F);
130
+ background: var(--mmw--color-main-button-active, #5C950F);
131
131
  }
132
132
  }
133
133
  </style>