@jetbrains/kotlin-web-site-ui 4.0.0-alpha.1 → 4.0.0-alpha.2
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/out/components/header/index.css +3 -3
- package/out/components/header/menu-popup/menu-button/menu-button.js +1 -1
- package/out/components/header/menu-popup/menu-button/menu-button.module.pcss.js +4 -0
- package/package.json +1 -1
- package/out/components/header/menu-popup/menu-button/menu-button.pcss.js +0 -2
|
@@ -347,7 +347,7 @@
|
|
|
347
347
|
display: block;
|
|
348
348
|
}
|
|
349
349
|
|
|
350
|
-
.button {
|
|
350
|
+
.ktl-menu-button-module_button_wB9Mx {
|
|
351
351
|
display: flex;
|
|
352
352
|
-webkit-appearance: none;
|
|
353
353
|
-moz-appearance: none;
|
|
@@ -367,8 +367,8 @@
|
|
|
367
367
|
color: var(--ktl-color-white-light);
|
|
368
368
|
}
|
|
369
369
|
|
|
370
|
-
.button:hover,
|
|
371
|
-
.button :focus {
|
|
370
|
+
.ktl-menu-button-module_button_wB9Mx:hover,
|
|
371
|
+
.ktl-menu-button-module_button_wB9Mx :focus {
|
|
372
372
|
color: #ffffff;
|
|
373
373
|
}
|
|
374
374
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsx } from 'react/jsx-runtime';
|
|
2
|
-
import styles from './menu-button.pcss.js';
|
|
2
|
+
import styles from './menu-button.module.pcss.js';
|
|
3
3
|
import classNames from 'classnames';
|
|
4
4
|
import SvgHamburgerIcon from './hamburger-icon.svg.js';
|
|
5
5
|
import SvgCloseIcon from './close-icon.svg.js';
|
package/package.json
CHANGED