fu-kit 1.1.1 → 1.1.3

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": "fu-kit",
3
- "version": "1.1.1",
3
+ "version": "1.1.3",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "src/entry.js",
@@ -74,7 +74,7 @@ export default defineComponent({
74
74
 
75
75
  &._hollow {
76
76
  background: transparent;
77
- padding: var(--ui-button-padding, #{spacing(300, 400)});
77
+ padding: var(--ui-button-padding, #{spacing(200, 400)});
78
78
  color: var(--ui-pal);
79
79
  border-width: var(--ui-lt-border-width);
80
80
  border-style: var(--ui-lt-border-style);
@@ -62,7 +62,7 @@ export default {
62
62
  height: 100%;
63
63
  object-fit: cover;
64
64
  aspect-ratio: inherit;
65
- transition: all linear 500ms;
65
+ transition: all linear var(--ui-transition);
66
66
 
67
67
  &._loading {
68
68
  opacity: 0;
@@ -1,8 +1,8 @@
1
1
  $ui-media-breakpoints: (
2
- xs: 812px, // everything at this point and below is a mobile. (<= iphoneX)
2
+ xs: 812px, // everything at this point and below is a mobile. (<= iphoneX)
3
3
  sm: 1200px, // everything equal or below can be considered as a tablet.
4
4
  md: 1440px, // ~15" laptop display and below.
5
- // everything else above is a ~17" laptop or a large screen. (default)
5
+ // everything else above is a ~17" laptop or a large screen. (default)
6
6
  ) !default;
7
7
 
8
8
  @mixin respond-below($breakpoint) {