@asd20/ui 3.2.728 → 3.2.729
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
|
@@ -147,7 +147,7 @@ export default {
|
|
|
147
147
|
@mixin icon-circle-with-triangle(
|
|
148
148
|
$diameter: 2rem,
|
|
149
149
|
$arrow-width: 0.8rem,
|
|
150
|
-
$color:
|
|
150
|
+
$color: var(--color__primary),
|
|
151
151
|
$background: #ffffff
|
|
152
152
|
) {
|
|
153
153
|
// display: inline-block;
|
|
@@ -170,17 +170,18 @@ export default {
|
|
|
170
170
|
}
|
|
171
171
|
|
|
172
172
|
.circle {
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
}
|
|
179
|
-
|
|
180
|
-
|
|
173
|
+
&.-right {
|
|
174
|
+
transform: translateY(-50%) rotate(90deg);
|
|
175
|
+
}
|
|
176
|
+
&.-bottom {
|
|
177
|
+
transform: translateY(-50%) rotate(180deg);
|
|
178
|
+
}
|
|
179
|
+
&.-left {
|
|
180
|
+
transform: translateY(-50%) rotate(270deg);
|
|
181
|
+
}
|
|
181
182
|
}
|
|
182
|
-
.circle
|
|
183
|
-
|
|
183
|
+
.circle {
|
|
184
|
+
@include icon-circle-with-triangle();
|
|
184
185
|
}
|
|
185
186
|
.asd20-swiper {
|
|
186
187
|
--fade-stop: 100%;
|
|
@@ -195,7 +196,7 @@ export default {
|
|
|
195
196
|
cursor: pointer;
|
|
196
197
|
appearance: none;
|
|
197
198
|
position: absolute;
|
|
198
|
-
top:
|
|
199
|
+
top: 50%;
|
|
199
200
|
left: 0;
|
|
200
201
|
bottom: space(1);
|
|
201
202
|
z-index: 2;
|