@asd20/ui 3.2.730 → 3.2.732
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
|
@@ -145,10 +145,10 @@ export default {
|
|
|
145
145
|
|
|
146
146
|
// Use even-numbered diameters for smooth rendering
|
|
147
147
|
@mixin icon-circle-with-triangle(
|
|
148
|
-
$diameter:
|
|
148
|
+
$diameter: 3rem,
|
|
149
149
|
$arrow-width: 0.8rem,
|
|
150
150
|
$color: var(--color__primary),
|
|
151
|
-
$background:
|
|
151
|
+
$background: rgba(255, 255, 255, 0.85)
|
|
152
152
|
) {
|
|
153
153
|
// display: inline-block;
|
|
154
154
|
vertical-align: middle;
|
|
@@ -186,7 +186,7 @@ export default {
|
|
|
186
186
|
.asd20-swiper {
|
|
187
187
|
--fade-stop: 100%;
|
|
188
188
|
position: relative;
|
|
189
|
-
overflow:
|
|
189
|
+
overflow: hidden;
|
|
190
190
|
width: calc(100% - #{space(2)});
|
|
191
191
|
padding: space(1) space(1);
|
|
192
192
|
margin: space(0) space(0) space(0) space(0);
|
|
@@ -248,7 +248,7 @@ export default {
|
|
|
248
248
|
|
|
249
249
|
@media (min-width: 768px) {
|
|
250
250
|
.circle {
|
|
251
|
-
@include icon-circle-with-triangle($diameter:
|
|
251
|
+
@include icon-circle-with-triangle($diameter: 4rem, $arrow-width: 1rem);
|
|
252
252
|
}
|
|
253
253
|
}
|
|
254
254
|
@media (min-width: 1024px) {
|
|
@@ -258,9 +258,7 @@ export default {
|
|
|
258
258
|
.asd20-swiper {
|
|
259
259
|
padding: space(1) space(2);
|
|
260
260
|
width: calc(100% - #{space(4)});
|
|
261
|
-
|
|
262
|
-
margin-left: space(-1);
|
|
263
|
-
}
|
|
261
|
+
|
|
264
262
|
}
|
|
265
263
|
}
|
|
266
264
|
</style>
|