@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oardi/css-utils",
3
- "version": "0.44.0",
3
+ "version": "0.44.1",
4
4
  "author": "Ardian Shala",
5
5
  "homepage": "https://css-utils.oardi.com",
6
6
  "description": "Powerful set of semantic css classes with support for breakpoints, directions and spacings",
@@ -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
  }