@awes-io/ui 2.70.0 → 2.71.0

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.
Files changed (62) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/assets/css/components/_index.css +10 -0
  3. package/assets/css/components/address-block.css +29 -0
  4. package/assets/css/components/alert.css +16 -4
  5. package/assets/css/components/avatar.css +1 -0
  6. package/assets/css/components/bottom-bar.css +3 -2
  7. package/assets/css/components/button-fixed.css +4 -0
  8. package/assets/css/components/button-nav.css +125 -8
  9. package/assets/css/components/button.css +159 -3
  10. package/assets/css/components/calendar.css +2 -1
  11. package/assets/css/components/card.css +32 -4
  12. package/assets/css/components/chart.css +7 -0
  13. package/assets/css/components/context-menu.css +40 -0
  14. package/assets/css/components/date.css +4 -0
  15. package/assets/css/components/description.css +8 -0
  16. package/assets/css/components/dock.css +86 -0
  17. package/assets/css/components/dropdown-button.css +4 -0
  18. package/assets/css/components/dropdown.css +42 -9
  19. package/assets/css/components/file.css +20 -0
  20. package/assets/css/components/filter-date-range.css +21 -0
  21. package/assets/css/components/gmap.css +8 -0
  22. package/assets/css/components/header-notification.css +19 -0
  23. package/assets/css/components/headline.css +5 -2
  24. package/assets/css/components/icon-menu-item.css +42 -2
  25. package/assets/css/components/info.css +9 -1
  26. package/assets/css/components/island-avatar.css +1 -1
  27. package/assets/css/components/island.css +1 -0
  28. package/assets/css/components/layout-menu.css +3 -3
  29. package/assets/css/components/main.css +16 -0
  30. package/assets/css/components/mobile-menu-item.css +2 -2
  31. package/assets/css/components/mobile-menu-nav.css +12 -0
  32. package/assets/css/components/mobile-menu.css +15 -3
  33. package/assets/css/components/modal.css +116 -9
  34. package/assets/css/components/nav.css +2 -0
  35. package/assets/css/components/notification.css +9 -4
  36. package/assets/css/components/page-headline.css +49 -3
  37. package/assets/css/components/page-menu-buttons.css +25 -0
  38. package/assets/css/components/page.css +6 -0
  39. package/assets/css/components/search.css +45 -0
  40. package/assets/css/components/select.css +32 -1
  41. package/assets/css/components/sub-headline.css +8 -2
  42. package/assets/css/components/tab-nav.css +16 -0
  43. package/assets/css/components/table.css +95 -9
  44. package/assets/css/components/tags.css +8 -0
  45. package/assets/css/components/tel.css +4 -0
  46. package/assets/css/components/text-field.css +34 -3
  47. package/assets/css/components/title.css +7 -0
  48. package/assets/css/components/user-menu.css +10 -5
  49. package/assets/js/events.js +8 -0
  50. package/assets/js/icons/mono.js +3 -1
  51. package/assets/js/styles.js +65 -31
  52. package/components/1_atoms/AwDock.vue +195 -0
  53. package/components/1_atoms/AwFile.vue +21 -0
  54. package/components/1_atoms/AwTitle.vue +18 -0
  55. package/components/3_organisms/AwAddressBlock.vue +0 -8
  56. package/components/3_organisms/AwBottomBar.vue +6 -6
  57. package/components/3_organisms/AwContextMenu.vue +8 -3
  58. package/components/3_organisms/AwGmap.vue +0 -6
  59. package/components/3_organisms/AwModal.vue +2 -2
  60. package/components/4_pages/AwPageMenuButtons.vue +1 -0
  61. package/components/4_pages/_AwPageHeadline.vue +2 -2
  62. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [2.71.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.70.0...@awes-io/ui@2.71.0) (2023-09-08)
7
+
8
+
9
+ ### Features
10
+
11
+ * replace style and components from easyweek ([72b829c](https://github.com/awes-io/client/commit/72b829c6fbc0b57e0ed275fd7858ab1e9817e448))
12
+
13
+
14
+
15
+
16
+
6
17
  # [2.70.0](https://github.com/awes-io/client/compare/@awes-io/ui@2.69.0...@awes-io/ui@2.70.0) (2023-09-04)
7
18
 
8
19
 
@@ -1,3 +1,5 @@
1
+ @import './main.css';
2
+
1
3
  @import './icon.css';
2
4
 
3
5
  @import './usermenu.css';
@@ -12,6 +14,9 @@
12
14
  @import './button.css';
13
15
  @import './button-fixed.css';
14
16
  @import './button-nav.css';
17
+ @import './dock.css';
18
+ @import './title.css';
19
+ @import './file.css';
15
20
 
16
21
  @import './calendar.css';
17
22
 
@@ -21,6 +26,7 @@
21
26
  @import './chip-select';
22
27
 
23
28
  @import './cropper.css';
29
+ @import './chart.css';
24
30
 
25
31
  @import './context-menu.css';
26
32
  @import './description.css';
@@ -29,6 +35,7 @@
29
35
  @import './dropdown.css';
30
36
  @import './dropdown-button.css';
31
37
  @import './flow.css';
38
+ @import './filter-date-range.css';
32
39
 
33
40
  @import './form.css';
34
41
  @import './switch-field.css';
@@ -40,6 +47,8 @@
40
47
  @import './island.css';
41
48
  @import './island-avatar.css';
42
49
  @import './sub-headline.css';
50
+ @import './address-block.css';
51
+ @import './gmap.css';
43
52
 
44
53
  @import './bottom-bar.css';
45
54
  @import './header-notification.css';
@@ -78,6 +87,7 @@
78
87
  @import './refresh-wrapper.css';
79
88
 
80
89
  @import './select.css';
90
+ @import './search.css';
81
91
 
82
92
  @import './userpic.css';
83
93
  @import './uploader.css';
@@ -0,0 +1,29 @@
1
+ .aw-address-block {
2
+ .aw-modal__buttons.aw-button-group > div {
3
+ padding: 0;
4
+ border-top: none;
5
+ flex-direction: row-reverse;
6
+ gap: 1rem;
7
+
8
+ .aw-button {
9
+ border-radius: 1rem;
10
+ min-height: 3.5rem;
11
+ margin-right: 0 !important;
12
+ flex: 1 1 100%;
13
+
14
+ @screen md {
15
+ flex: 0 0 auto;
16
+ }
17
+
18
+ @screen lg {
19
+ border-radius: 0.625rem;
20
+ }
21
+ }
22
+ }
23
+ }
24
+
25
+ .aw-address-block .edit-button {
26
+ @screen md {
27
+ @apply absolute top-0 right-0;
28
+ }
29
+ }
@@ -2,7 +2,7 @@
2
2
  display: grid;
3
3
 
4
4
  padding: theme('spacing.4', 1rem);
5
- border-radius: theme('borderRadius.md', 0.25rem);
5
+ border-radius: 0.625rem;
6
6
  border: 1px solid var(--aw-alert-border);
7
7
  background: var(--aw-alert-bg);
8
8
 
@@ -10,6 +10,7 @@
10
10
  padding-right: theme('spacing.4', 1rem);
11
11
  font-size: 1.5em;
12
12
  line-height: 0.75em;
13
+ align-self: start;
13
14
  }
14
15
 
15
16
  .aw-description {
@@ -26,13 +27,15 @@
26
27
  }
27
28
 
28
29
  &__buttons {
29
- justify-self: end;
30
-
31
30
  display: flex;
32
31
  flex-wrap: wrap;
33
- align-items: flex-start;
34
32
  justify-content: flex-end;
35
33
 
34
+ justify-self: start;
35
+ align-items: center;
36
+ margin-left: 3rem;
37
+ margin-bottom: 1rem;
38
+
36
39
  & > * {
37
40
  margin-top: theme('spacing.4', 1rem);
38
41
  margin-left: theme('spacing.4', 1rem);
@@ -42,6 +45,12 @@
42
45
  color: var(--aw-alert-on-color);
43
46
  }
44
47
  }
48
+
49
+ &--title-start {
50
+ .aw-alert__title {
51
+ align-items: start;
52
+ }
53
+ }
45
54
  }
46
55
 
47
56
  @screen lg {
@@ -61,6 +70,9 @@
61
70
 
62
71
  &__buttons {
63
72
  margin-top: calc(-1 * theme('spacing.1', 0.25rem));
73
+ margin-right: 1.5rem;
74
+ margin-left: 0;
75
+ margin-bottom: 0;
64
76
 
65
77
  & > * {
66
78
  margin-top: theme('spacing.1', 0.25rem);
@@ -56,3 +56,4 @@
56
56
  will-change: transform;
57
57
  }
58
58
  }
59
+
@@ -4,13 +4,14 @@
4
4
  @apply bg-surface;
5
5
  display: flex;
6
6
  padding-bottom: env(safe-area-inset-bottom, 0);
7
- box-shadow: 0px -2px 2px rgba(var(--c-mono-100-rgb, 50, 50, 50), 0.1);
7
+ box-shadow: none;
8
+ border-top: 1px solid rgba(var(--c-on-surface-rgb), .1);
8
9
 
9
10
  position: fixed;
10
11
  bottom: 0;
11
12
  min-height: 4rem;
12
13
  width: 100%;
13
- z-index: 20;
14
+ z-index: 2;
14
15
 
15
16
  & > * {
16
17
  flex-basis: theme('spacing.20', 5rem);
@@ -79,3 +79,7 @@
79
79
  user-select: none !important;
80
80
  }
81
81
  }
82
+
83
+ a.aw-button-fixed--locked {
84
+ pointer-events: none;
85
+ }
@@ -1,15 +1,16 @@
1
1
  .aw-button-nav {
2
- @apply bg-mono-800;
3
2
  display: inline-flex;
4
- border-radius: theme('borderRadius.lg');
5
3
  font-size: theme('fontSize.sm');
4
+ @apply bg-mono-900;
5
+ border: none;
6
+ border-radius: 1rem;
6
7
 
7
8
  /* & .aw-slider__scroller {
8
9
  padding: theme('spacing.1') 0;
9
10
  } */
10
11
 
11
12
  &__wrapper {
12
- padding: theme('spacing.1') 0;
13
+ padding: 0;
13
14
  }
14
15
 
15
16
  &__toggler,
@@ -21,22 +22,47 @@
21
22
  }
22
23
 
23
24
  &__toggler {
25
+ @apply px-0 font-bold tracking-widest;
26
+
24
27
  position: relative;
25
28
  flex-shrink: 0;
26
29
  padding: 0 theme('spacing.1');
27
- border-radius: theme('borderRadius.default');
28
30
  min-width: theme('spacing.8');
29
- line-height: theme('lineHeight.relaxed');
30
31
  white-space: nowrap;
32
+
33
+ font-size: 0.625rem;
34
+ line-height: 1.6;
35
+ border-radius: 0;
36
+ border-top: 2px solid var(--c-mono-800);
37
+ border-bottom: 2px solid var(--c-mono-800);
38
+
39
+ &:first-child {
40
+ border-radius: 1rem 0 0 1rem;
41
+ border-left: 2px solid var(--c-mono-800);
42
+ }
43
+
44
+ &:last-child {
45
+ border-radius: 0 1rem 1rem 0;
46
+ border-right: 2px solid var(--c-mono-800);
47
+ }
48
+
49
+ &_no_text > span {
50
+ padding-left: 0.5rem;
51
+ padding-right: 0.5rem;
52
+ }
31
53
  }
32
54
 
33
55
  &__toggler > span {
34
- border-radius: theme('borderRadius.default');
35
- padding: theme('spacing.1') theme('spacing.5');
56
+ @apply uppercase;
57
+
58
+ padding: theme('spacing.1') 1rem;
59
+ width: 100%;
60
+ border-radius: calc(1rem - 2px);
61
+ min-height: 2.75rem;
36
62
  }
37
63
 
38
64
  &__toggler > span:before {
39
- @apply bg-mono-700;
65
+ @apply bg-mono-700 hidden;
40
66
  content: '';
41
67
  position: absolute;
42
68
  left: 0;
@@ -74,4 +100,95 @@
74
100
  pointer-events: none;
75
101
  cursor: not-allowed;
76
102
  }
103
+
104
+
105
+ &--fullwidth {
106
+ background-color: inherit;
107
+ margin-left: calc(-1 * var(--container-padding));
108
+ margin-right: calc(-1 * var(--container-padding));
109
+ max-width: calc(100% + 2 * var(--container-padding));
110
+
111
+ .aw-slider__scroller:before,
112
+ .aw-slider__scroller:after {
113
+ content: '';
114
+ display: block;
115
+ flex-shrink: 0;
116
+ width: var(--container-padding);
117
+ height: 100%;
118
+ }
119
+
120
+ .aw-slider__scroller:before {
121
+ scroll-snap-align: start;
122
+ }
123
+
124
+ .aw-slider__scroller:after,
125
+ .aw-slider__scroller > :last-child {
126
+ scroll-snap-align: end;
127
+ }
128
+ }
129
+
130
+ &--expand {
131
+ .aw-button-nav__toggler {
132
+ flex: 1 0 auto;
133
+ }
134
+ }
135
+
136
+ &--fill {
137
+ .aw-button-nav__toggler {
138
+ background-color: var(--c-mono-800);
139
+ border: 4px solid var(--c-mono-800);
140
+
141
+ & > span {
142
+ border-radius: calc(1rem - 4px);
143
+ min-height: 2.5rem;
144
+ }
145
+ }
146
+ }
147
+ }
148
+
149
+ @screen md {
150
+ .aw-button-nav {
151
+ &--fullwidth {
152
+ margin-left: 0;
153
+ margin-right: 0;
154
+ max-width: 100%;
155
+
156
+ .aw-slider__scroller:before,
157
+ .aw-slider__scroller:after {
158
+ display: none;
159
+ }
160
+ }
161
+ }
162
+ }
163
+
164
+ @screen lg {
165
+ .aw-button-nav {
166
+ border-radius: 0.625rem;
167
+
168
+ &__toggler {
169
+ &:first-child {
170
+ border-radius: 0.625rem 0 0 0.625rem;
171
+ }
172
+
173
+ &:last-child {
174
+ border-radius: 0 0.625rem 0.625rem 0;
175
+ }
176
+
177
+ & > span {
178
+ min-height: 2.25rem;
179
+ border-radius: calc(0.625rem - 2px);
180
+ }
181
+ }
182
+
183
+ &--fill {
184
+ .aw-button-nav__toggler {
185
+ border: 2px solid var(--c-mono-800);
186
+
187
+ & > span {
188
+ border-radius: calc(0.625rem - 2px);
189
+ min-height: 2.25rem;
190
+ }
191
+ }
192
+ }
193
+ }
77
194
  }
@@ -8,6 +8,12 @@
8
8
  outline: none;
9
9
  }
10
10
 
11
+ &.aw-button_lg {
12
+ .aw-button__overlay {
13
+ border-radius: 0.875rem;
14
+ }
15
+ }
16
+
11
17
  &__overlay {
12
18
  @apply absolute inset-0 overflow-hidden rounded;
13
19
  }
@@ -25,6 +31,8 @@
25
31
  justify-content: center;
26
32
  width: 100%;
27
33
  transition: 100ms opacity;
34
+ font-size: 14px;
35
+ line-height: 1.125rem;
28
36
 
29
37
  &:focus {
30
38
  outline: none;
@@ -32,6 +40,8 @@
32
40
  }
33
41
 
34
42
  &__text {
43
+ display: flex;
44
+ align-items: center;
35
45
  white-space: nowrap;
36
46
  }
37
47
 
@@ -107,7 +117,13 @@
107
117
  }
108
118
 
109
119
  &__content_md {
110
- @apply px-4 py-3 text-sm leading-4;
120
+ @apply px-4 text-sm leading-4;
121
+
122
+ padding-top: 1rem;
123
+ padding-bottom: 1rem;
124
+ min-width: 3rem;
125
+ min-height: 3rem;
126
+ height: 100%;
111
127
  }
112
128
 
113
129
  &.theme-icon &__content_md,
@@ -121,7 +137,10 @@
121
137
  }
122
138
 
123
139
  &__content_lg {
124
- @apply px-10 py-3 text-base;
140
+ @apply px-10 text-base;
141
+
142
+ padding-top: 1.25rem;
143
+ padding-bottom: 1.25rem;
125
144
  }
126
145
 
127
146
  &.theme-icon &__content_lg,
@@ -135,6 +154,11 @@
135
154
  @apply p-4;
136
155
  }
137
156
 
157
+ &.theme-circle .aw-button__content {
158
+ width: 3.5rem;
159
+ height: 3.5rem;
160
+ }
161
+
138
162
  /* Mobile hidden text */
139
163
 
140
164
  @media (max-width: 768px) {
@@ -240,7 +264,16 @@
240
264
 
241
265
  /* Link */
242
266
  &.theme-ghost.color-default {
243
- @apply text-on-surface;
267
+ background: var(--c-mono-800);
268
+ color: var(--c-on-mono-800);
269
+
270
+ &:hover {
271
+ background: var(--c-mono-700);
272
+ }
273
+
274
+ .aw-button__overlay {
275
+ background-color: rgba(var(--c-overlay-rgb), 0.5);
276
+ }
244
277
  }
245
278
 
246
279
  /* Outline */
@@ -288,6 +321,48 @@
288
321
  &:not(:disabled):active {
289
322
  @apply shadow-button-active;
290
323
  }
324
+
325
+ &.add-tag-button {
326
+ font-size: 10px;
327
+ min-width: 20px;
328
+ min-height: 20px;
329
+ border-radius: 5px;
330
+ line-height: 16px;
331
+
332
+ .aw-button__content {
333
+ @apply px-0;
334
+ flex-direction: row-reverse;
335
+
336
+ & > span {
337
+ @apply ml-0;
338
+ }
339
+ }
340
+
341
+ &.has-text .aw-button__text {
342
+ @apply mr-1;
343
+ }
344
+
345
+ &.has-text .aw-button__content {
346
+ @apply px-2;
347
+ }
348
+
349
+ & svg {
350
+ width: 10px;
351
+ }
352
+ }
353
+
354
+ &.color-on-surface {
355
+ background: var(--c-mono-0);
356
+ color: var(--c-on-mono-0);
357
+
358
+ &:hover {
359
+ background: var(--c-mono-300);
360
+
361
+ &:disabled {
362
+ background: var(--c-mono-0);
363
+ }
364
+ }
365
+ }
291
366
  }
292
367
 
293
368
  &.theme-solid &__overlay {
@@ -297,6 +372,32 @@
297
372
  &.theme-outline {
298
373
  @apply text-mono-400;
299
374
  border: 1px solid var(--c-mono-400);
375
+
376
+ &.color-surface {
377
+ background: transparent;
378
+ border-width: 0.125rem;
379
+ border-color: var(--c-mono-800);
380
+
381
+ &:hover {
382
+ border-color: var(--c-mono-400);
383
+
384
+ &:disabled {
385
+ border-color: var(--c-mono-800);
386
+ }
387
+ }
388
+
389
+ &:not(:disabled):hover {
390
+ border-color: var(--c-mono-400);
391
+ }
392
+
393
+ .aw-button__content {
394
+ color: var(--c-on-surface);
395
+ }
396
+
397
+ .aw-button__overlay {
398
+ background: transparent;
399
+ }
400
+ }
300
401
  }
301
402
 
302
403
  &.theme-ghost &__overlay {
@@ -407,3 +508,58 @@
407
508
  }
408
509
  }
409
510
  }
511
+
512
+ :root[data-dark="true"] {
513
+ .aw-button {
514
+ &.theme-ghost.color-default {
515
+ background: var(--c-mono-800);
516
+ box-shadow: 0 0 0 1px rgba(var(--c-on-surface-rgb), 0.1) inset;
517
+ color: var(--c-on-mono-800);
518
+
519
+ &:hover {
520
+ background: var(--c-mono-200);
521
+ }
522
+ }
523
+ }
524
+ }
525
+
526
+ .aw-button.theme-solid,
527
+ .aw-button .aw-button__overlay,
528
+ .aw-button.theme-circle,
529
+ .aw-button.theme-circle > .aw-button__overlay,
530
+ .aw-button.theme-outline,
531
+ .aw-button.theme-ghost,
532
+ .aw-button.theme-ghost > .aw-button__overlay {
533
+ border-radius: 0.9375rem;
534
+ }
535
+
536
+ .aw-button.theme-solid,
537
+ .aw-button.theme-circle,
538
+ .aw-button.theme-outline,
539
+ .aw-button.theme-ghost {
540
+ box-shadow: none;
541
+ }
542
+
543
+ @screen lg {
544
+ .aw-button.aw-button_md.theme-solid,
545
+ .aw-button.aw-button_md .aw-button__overlay,
546
+ .aw-button.aw-button_md.theme-circle,
547
+ .aw-button.aw-button_md.theme-circle > .aw-button__overlay,
548
+ .aw-button.aw-button_md.theme-outline,
549
+ .aw-button.aw-button_md.theme-ghost,
550
+ .aw-button.aw-button_md.theme-ghost > .aw-button__overlay {
551
+ border-radius: 0.625rem;
552
+ }
553
+
554
+ .aw-button__content_md {
555
+ padding-top: 0.75rem;
556
+ padding-bottom: 0.75rem;
557
+ min-width: 2.5rem;
558
+ min-height: 2.5rem;
559
+ }
560
+
561
+ .aw-button.theme-circle .aw-button__content {
562
+ width: 2.5rem;
563
+ height: 2.5rem;
564
+ }
565
+ }
@@ -3,7 +3,7 @@
3
3
  display: flex;
4
4
  flex-wrap: wrap;
5
5
  padding-bottom: theme('spacing.2');
6
- border-top: 2px solid var(--c-success);
6
+ border-top: none;
7
7
 
8
8
  &__nav {
9
9
  @apply bg-success;
@@ -12,6 +12,7 @@
12
12
  align-items: center;
13
13
  padding: theme('spacing.2') theme('spacing.1');
14
14
  width: 100%;
15
+ border-radius: 0.5rem;
15
16
  }
16
17
 
17
18
  &__nav-title {
@@ -1,6 +1,6 @@
1
1
  .aw-card {
2
- --card-padding-x: theme('spacing.4', 1rem);
3
- --card-padding-y: theme('spacing.4', 1rem);
2
+ --card-padding-x: theme('spacing.5', 1.25rem);
3
+ --card-padding-y: theme('spacing.5', 1.25rem);
4
4
 
5
5
  display: block;
6
6
  min-width: 100%;
@@ -8,8 +8,9 @@
8
8
  color: var(--c-on-surface);
9
9
  background-color: var(--c-surface);
10
10
 
11
- border-radius: theme('borderRadius.default', 0.25rem);
11
+ border-radius: theme('spacing.5', 1.25rem);
12
12
  padding: var(--card-padding-y) var(--card-padding-x);
13
+ box-shadow: none;
13
14
 
14
15
  &__title {
15
16
  margin-bottom: 0;
@@ -19,7 +20,7 @@
19
20
  display: flex;
20
21
 
21
22
  &--offset {
22
- margin-bottom: theme('spacing.2', 0.5rem);
23
+ margin-bottom: 0.75rem;
23
24
  }
24
25
  }
25
26
 
@@ -28,3 +29,30 @@
28
29
  margin-left: auto;
29
30
  }
30
31
  }
32
+
33
+ .container .aw-card,
34
+ .container-small .aw-card,
35
+ .container-full .aw-card {
36
+ margin-left: calc(-1 * var(--container-padding));
37
+ margin-right: calc(-1 * var(--container-padding));
38
+ width: calc(100% + 2 * var(--container-padding));
39
+ }
40
+
41
+ @screen lg {
42
+ .aw-card {
43
+ --card-padding-x: 1.875rem;
44
+ --card-padding-y: 1.875rem;
45
+
46
+ &__header--offset {
47
+ margin-bottom: 1.25rem;
48
+ }
49
+ }
50
+
51
+ .container .aw-card,
52
+ .container-small .aw-card,
53
+ .container-full .aw-card {
54
+ margin-left: unset;
55
+ margin-right: unset;
56
+ width: 100%;
57
+ }
58
+ }
@@ -0,0 +1,7 @@
1
+ .chart {
2
+ .apexcharts-svg {
3
+ .apexcharts-legend {
4
+ position: fixed !important;
5
+ }
6
+ }
7
+ }
@@ -4,4 +4,44 @@
4
4
  margin: 0;
5
5
  padding: 0;
6
6
  }
7
+
8
+ & > .aw-button.theme-ghost {
9
+ border-radius: 0.9375rem;
10
+ width: auto;
11
+ height: 3rem;
12
+
13
+ .aw-button__content_md {
14
+ width: auto;
15
+ height: 3rem;
16
+ padding: 0.5rem;
17
+ }
18
+ }
19
+
20
+ &--highlight {
21
+ .aw-button.theme-icon {
22
+ background: var(--c-mono-800);
23
+ border-radius: 50%;
24
+ width: 32px;
25
+ height: 32px;
26
+
27
+ .aw-button__content_md {
28
+ width: 32px;
29
+ height: 32px;
30
+ padding: 8px;
31
+ }
32
+ }
33
+ }
34
+ }
35
+
36
+ @screen lg {
37
+ .aw-context-menu {
38
+ & > .aw-button.theme-ghost {
39
+ border-radius: 0.625rem;
40
+ height: 2.5rem;
41
+
42
+ .aw-button__content_md {
43
+ height: 2.5rem;
44
+ }
45
+ }
46
+ }
7
47
  }