agroptima-design-system 1.1.3-beta.3 → 1.1.3-beta.4

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": "agroptima-design-system",
3
- "version": "1.1.3-beta.3",
3
+ "version": "1.1.3-beta.4",
4
4
  "scripts": {
5
5
  "dev": "npm run storybook",
6
6
  "storybook": "storybook dev -p 6006 --ci",
@@ -1,6 +1,7 @@
1
1
  @use '../../settings/typography/content' as typography;
2
2
  @use '../../settings/config';
3
3
  @use '../../settings/depth';
4
+ @use '../../settings/breakpoints';
4
5
 
5
6
  .menu {
6
7
  @include typography.body-regular-primary;
@@ -19,8 +20,8 @@
19
20
  cursor: default;
20
21
 
21
22
  .icon {
22
- width: config.$icon-size-3x;
23
- height: config.$icon-size-3x;
23
+ width: config.$icon-size-5x;
24
+ height: config.$icon-size-5x;
24
25
  > svg {
25
26
  width: 100%;
26
27
  height: 100%;
@@ -70,9 +71,9 @@
70
71
  }
71
72
 
72
73
  .arrow > svg {
73
- fill: var(--primary-color-100);
74
+ fill: var(--primary-color-600);
74
75
  path {
75
- fill: var(--primary-color-100);
76
+ fill: var(--primary-color-600);
76
77
  }
77
78
  }
78
79
 
@@ -102,4 +103,13 @@
102
103
  .menu-item::-webkit-details-marker {
103
104
  display: none;
104
105
  }
105
- }
106
+
107
+ @media only screen and (min-width: breakpoints.$medium) {
108
+ .menu-item {
109
+ .icon {
110
+ width: config.$icon-size-3x;
111
+ height: config.$icon-size-3x;
112
+ }
113
+ }
114
+ }
115
+ }