@everymatrix/player-bonus-card 0.0.224 → 0.0.229

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/player-bonus-card",
3
- "version": "0.0.224",
3
+ "version": "0.0.229",
4
4
  "main": "dist/player-bonus-card",
5
5
  "svelte": "src/index.ts",
6
6
  "scripts": {
@@ -36,5 +36,5 @@
36
36
  "publishConfig": {
37
37
  "access": "public"
38
38
  },
39
- "gitHead": "56c929409f6926e8a96fcfbe5070643a08ae19cd"
39
+ "gitHead": "efee0743817693e5186a61a1477e081208d48fec"
40
40
  }
@@ -100,10 +100,10 @@
100
100
  }
101
101
 
102
102
  .BonusCard {
103
- background-color: #fff;
103
+ background-color: var(--emfe-w-color-white, #FFFFFF);
104
104
  padding: 10px 20px 20px;
105
105
  border-radius: 5px;
106
- box-shadow: 0 3px 12px #00000012;
106
+ box-shadow: 0 3px 12px var(--emfe-w-color-black, #000000);
107
107
  }
108
108
 
109
109
  .BonusCardRow {
@@ -113,18 +113,18 @@
113
113
  padding: 2px 10px;
114
114
  font-size: 14px;
115
115
  .BonusCardRowTitle {
116
- color: #000;
116
+ color: var(--emfe-w-color-black, #000000);
117
117
  font-weight: 700;
118
118
  span {
119
119
  font-weight: 400;
120
- color: #58586B;
120
+ color: var(--emfe-w-color-gray-300, #58586B);
121
121
  }
122
122
  }
123
123
  .BonusCardRowText {
124
- color: #58586B;
124
+ color: var(--emfe-w-color-gray-300, #58586B);
125
125
  &.BonusCardStatus {
126
126
  font-weight: 700;
127
- color: #000;
127
+ color: var(--emfe-w-color-black, #000000);
128
128
  }
129
129
  &.StatusActive {
130
130
  color: #0AA543;
@@ -140,15 +140,15 @@
140
140
  }
141
141
  }
142
142
  &:nth-child(even) {
143
- background-color: #F9F8F8;
143
+ background-color: var(--emfe-w-color-gray-50, #F9F8F8);
144
144
  border-radius: 5px;
145
145
  }
146
146
  }
147
147
 
148
148
  .DeleteBonus {
149
- background: #D0046C;
150
- border: 1px solid #D0046C;
151
- color: #fff;
149
+ background: var(--emfe-w-color-primary, #D0046C);
150
+ border: 1px solid var(--emfe-w-color-primary, #D0046C);
151
+ color: var(--emfe-w-color-white, #FFFFFF);
152
152
  cursor: pointer;
153
153
  border-radius: 5px;
154
154
  width: 50%;
@@ -164,7 +164,7 @@
164
164
  width: 100%;
165
165
  }
166
166
  &:active {
167
- background: darken(#D0046C, 10);
167
+ background: var(--emfe-w-color-primary-600, #99034F);
168
168
  }
169
169
  }
170
170
  </style>