@appartmint/mint 0.10.20 → 0.10.22

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.
@@ -24,6 +24,14 @@ p {
24
24
  @include headers () {
25
25
  font-family: $font-secondary, $font-secondary-backups;
26
26
  line-height: 1;
27
+
28
+ &:first-child {
29
+ margin-top: 0;
30
+ }
31
+
32
+ &:last-child {
33
+ margin-bottom: 0;
34
+ }
27
35
  }
28
36
 
29
37
  @each $tag in map-keys($font-size-mobile) {
@@ -88,7 +88,8 @@
88
88
  }
89
89
 
90
90
  a {
91
- color: css-var(brand);
91
+ color: css-var($link-color);
92
+ transition: color css-var(delay-default);
92
93
 
93
94
  .fa-instagram {
94
95
  position: relative;
@@ -109,7 +110,7 @@ a {
109
110
  }
110
111
 
111
112
  @include states(hover, focus, active) {
112
- color: css-var(accent-0);
113
+ color: css-var($link-color-hover);
113
114
 
114
115
  .fa-facebook, .fa-square-facebook {
115
116
  color: css-var(facebook);
@@ -98,6 +98,9 @@ $shadow-size: 0 0 2rem -0.5rem !default;
98
98
  $image-shadow-size: 0.5rem !default;
99
99
 
100
100
  /// Buttons
101
+ $link-color: brand !default;
102
+ $link-color-hover: accent-0 !default;
103
+
101
104
  $menu-bar-height: 0.4rem !default;
102
105
  $menu-bar-width: $menu-bar-height * 8 !default;
103
106
  $menu-btn-height: $menu-bar-height * 8 !default;