@linzjs/lui 17.41.9 → 17.41.10
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/CHANGELOG.md +7 -0
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/lui.css +3 -3
- package/dist/lui.css.map +1 -1
- package/dist/lui.esm.js +4 -4
- package/dist/lui.esm.js.map +1 -1
- package/dist/scss/Components/HeaderV2/header-v2.scss +4 -4
- package/package.json +1 -1
|
@@ -182,6 +182,10 @@ $headerElementPadding: spacing.$unit-xs;
|
|
|
182
182
|
display: flex;
|
|
183
183
|
flex-direction: column;
|
|
184
184
|
|
|
185
|
+
.clickable:hover {
|
|
186
|
+
cursor: pointer;
|
|
187
|
+
}
|
|
188
|
+
|
|
185
189
|
&-button {
|
|
186
190
|
@include fonts.font-semibold;
|
|
187
191
|
position: relative;
|
|
@@ -190,10 +194,6 @@ $headerElementPadding: spacing.$unit-xs;
|
|
|
190
194
|
justify-content: center;
|
|
191
195
|
border-radius: misc.$borderRadius;
|
|
192
196
|
|
|
193
|
-
.clickable:hover {
|
|
194
|
-
cursor: pointer;
|
|
195
|
-
}
|
|
196
|
-
|
|
197
197
|
&.selected {
|
|
198
198
|
background-color: rgba(0, 0, 0, 0.2);
|
|
199
199
|
}
|
package/package.json
CHANGED