@meduza/ui-kit-2 0.7.8 → 0.7.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/dist/ui-kit.css CHANGED
@@ -1936,7 +1936,6 @@
1936
1936
 
1937
1937
  font-family: 'Proxima Nova', 'Arial', 'Helvetica Neue', sans-serif;
1938
1938
  }
1939
- .Dropdown-module_root__Wv7S-.Dropdown-module_active__jEkE7 .Dropdown-module_menu__11IQL,
1940
1939
  .Dropdown-module_root__Wv7S-:hover .Dropdown-module_menu__11IQL {
1941
1940
  visibility: visible;
1942
1941
 
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.7.8",
2
+ "version": "0.7.9",
3
3
  "license": "MIT",
4
4
  "description": "UIKit for Meduza",
5
5
  "repository": "https://github.com/meduza-corp/ui-kit-2.git",
@@ -9,7 +9,6 @@
9
9
  font-family: $secondaryFont;
10
10
  }
11
11
 
12
- .root.active .menu,
13
12
  .root:hover .menu {
14
13
  visibility: visible;
15
14
 
@@ -20,7 +20,7 @@ export const Dropdown: React.FC<DropdownProps> = ({
20
20
  }) => {
21
21
  let classNames: ClassNames = [
22
22
  [styles.root, true],
23
- [styles.active, !!active && !!styles.active],
23
+ // [styles.active, !!active && !!styles.active],
24
24
  [styles.inactive, !active && !!styles.inactive]
25
25
  ]
26
26