@wise/dynamic-flow-client-internal 3.21.1 → 3.22.0
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/build/main.css +14 -0
- package/build/main.js +402 -225
- package/build/main.min.js +1 -1
- package/build/main.mjs +365 -188
- package/package.json +4 -4
package/build/main.css
CHANGED
|
@@ -119,6 +119,10 @@
|
|
|
119
119
|
width: 100%;
|
|
120
120
|
z-index: 0;
|
|
121
121
|
}
|
|
122
|
+
button.df-back-btn {
|
|
123
|
+
border: none;
|
|
124
|
+
background: none;
|
|
125
|
+
}
|
|
122
126
|
.df-back-btn .tw-avatar__content {
|
|
123
127
|
cursor: pointer;
|
|
124
128
|
background-color: var(--color-background-neutral);
|
|
@@ -261,3 +265,13 @@
|
|
|
261
265
|
flex-direction: row;
|
|
262
266
|
}
|
|
263
267
|
}
|
|
268
|
+
.df-back-btn .tw-avatar__content {
|
|
269
|
+
cursor: pointer;
|
|
270
|
+
background-color: var(--color-background-neutral);
|
|
271
|
+
}
|
|
272
|
+
.df-back-btn:hover .tw-avatar__content {
|
|
273
|
+
background-color: var(--color-background-neutral-hover);
|
|
274
|
+
}
|
|
275
|
+
.df-back-btn:active .tw-avatar__content {
|
|
276
|
+
background-color: var(--color-background-neutral-active);
|
|
277
|
+
}
|