@loafmarkets/ui 0.1.316 → 0.1.317
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/index.js +12 -18
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +12 -18
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -7066,21 +7066,11 @@ var KycLandingContainer = styled9__default.default.div`
|
|
|
7066
7066
|
overflow: hidden;
|
|
7067
7067
|
`;
|
|
7068
7068
|
var KycGoldGlow = styled9__default.default.div`
|
|
7069
|
-
|
|
7070
|
-
top: -60px;
|
|
7071
|
-
left: 50%;
|
|
7072
|
-
transform: translateX(-50%);
|
|
7073
|
-
width: 200px;
|
|
7074
|
-
height: 120px;
|
|
7075
|
-
background: radial-gradient(ellipse, rgba(212,175,55,0.15) 0%, transparent 70%);
|
|
7076
|
-
pointer-events: none;
|
|
7069
|
+
display: none;
|
|
7077
7070
|
`;
|
|
7078
7071
|
var KycLockIcon = styled9__default.default.div`
|
|
7079
7072
|
width: 52px;
|
|
7080
7073
|
height: 52px;
|
|
7081
|
-
border-radius: 50%;
|
|
7082
|
-
background: rgba(212,175,55,0.08);
|
|
7083
|
-
border: 1px solid rgba(212,175,55,0.2);
|
|
7084
7074
|
display: flex;
|
|
7085
7075
|
align-items: center;
|
|
7086
7076
|
justify-content: center;
|
|
@@ -7173,20 +7163,24 @@ var CloseButton = styled9__default.default.button`
|
|
|
7173
7163
|
top: 1rem;
|
|
7174
7164
|
right: 1rem;
|
|
7175
7165
|
z-index: 10;
|
|
7176
|
-
background:
|
|
7177
|
-
border:
|
|
7178
|
-
|
|
7179
|
-
color: var(--color-text-secondary, #848e9c);
|
|
7166
|
+
background: none;
|
|
7167
|
+
border: none;
|
|
7168
|
+
color: rgba(255, 255, 255, 0.4);
|
|
7180
7169
|
font-size: 1.5rem;
|
|
7181
7170
|
cursor: pointer;
|
|
7182
|
-
padding: 0.
|
|
7171
|
+
padding: 0.25rem;
|
|
7183
7172
|
display: flex;
|
|
7184
7173
|
align-items: center;
|
|
7185
7174
|
justify-content: center;
|
|
7186
|
-
transition: color 0.2s ease
|
|
7175
|
+
transition: color 0.2s ease;
|
|
7176
|
+
|
|
7177
|
+
svg {
|
|
7178
|
+
width: 18px;
|
|
7179
|
+
height: 18px;
|
|
7180
|
+
}
|
|
7187
7181
|
|
|
7188
7182
|
&:hover {
|
|
7189
|
-
color:
|
|
7183
|
+
color: rgba(255, 255, 255, 0.8);
|
|
7190
7184
|
}
|
|
7191
7185
|
`;
|
|
7192
7186
|
var Title = styled9__default.default.h2`
|