@oardi/css-utils 0.44.0 → 0.44.1
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/scss/utilities.scss +21 -1
package/package.json
CHANGED
package/scss/utilities.scss
CHANGED
|
@@ -161,7 +161,7 @@
|
|
|
161
161
|
box-shadow: var(--shadow-lg);
|
|
162
162
|
}
|
|
163
163
|
|
|
164
|
-
.hover-shadow {
|
|
164
|
+
.hover-shadow-sm {
|
|
165
165
|
transition:
|
|
166
166
|
box-shadow var(--transition-duration-fast) ease-out,
|
|
167
167
|
transform var(--transition-duration-fast) ease-out;
|
|
@@ -171,6 +171,26 @@
|
|
|
171
171
|
}
|
|
172
172
|
}
|
|
173
173
|
|
|
174
|
+
.hover-shadow {
|
|
175
|
+
transition:
|
|
176
|
+
box-shadow var(--transition-duration-fast) ease-out,
|
|
177
|
+
transform var(--transition-duration-fast) ease-out;
|
|
178
|
+
|
|
179
|
+
&:hover {
|
|
180
|
+
box-shadow: var(--shadow);
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
.hover-shadow-lg {
|
|
185
|
+
transition:
|
|
186
|
+
box-shadow var(--transition-duration-fast) ease-out,
|
|
187
|
+
transform var(--transition-duration-fast) ease-out;
|
|
188
|
+
|
|
189
|
+
&:hover {
|
|
190
|
+
box-shadow: var(--shadow-lg);
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
|
|
174
194
|
.w-100 {
|
|
175
195
|
width: 100% !important;
|
|
176
196
|
}
|