@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 +1 -1
- package/utility/helpers.css +22 -2
package/package.json
CHANGED
package/utility/helpers.css
CHANGED
|
@@ -90,12 +90,33 @@ pre {
|
|
|
90
90
|
}
|
|
91
91
|
|
|
92
92
|
.capitalize {
|
|
93
|
-
|
|
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
|
}
|