@gitbutler/design-core 1.3.8 → 1.3.9

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": "@gitbutler/design-core",
3
- "version": "1.3.8",
3
+ "version": "1.3.9",
4
4
  "type": "module",
5
5
  "description": "Design tokens for GitButler applications",
6
6
  "keywords": [
@@ -90,12 +90,33 @@ pre {
90
90
  }
91
91
 
92
92
  .capitalize {
93
- display: inline-block;
93
+ text-transform: capitalize;
94
94
  }
95
+
95
96
  .capitalize:first-letter {
96
97
  text-transform: capitalize;
97
98
  }
98
99
 
100
+ /* TEXT LINKS */
101
+
102
+ .link-hover-2,
103
+ .link-hover-3 {
104
+ cursor: pointer;
105
+ transition: color var(--transition-fast);
106
+ }
107
+
108
+ .link-hover-2 {
109
+ &:hover {
110
+ color: var(--clr-text-1);
111
+ }
112
+ }
113
+
114
+ .link-hover-3 {
115
+ &:hover {
116
+ color: var(--clr-text-2);
117
+ }
118
+ }
119
+
99
120
  /* OPACITY */
100
121
  .op-10 {
101
122
  opacity: 0.1;
@@ -126,7 +147,6 @@ pre {
126
147
  }
127
148
 
128
149
  /* ANIMATION */
129
-
130
150
  .wiggle-animation {
131
151
  animation: wiggle-animation 0.35s forwards;
132
152
  }