@acorex/styles 5.6.0 → 5.7.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.
@@ -1,9 +1,25 @@
1
1
  @layer components {
2
2
  ax-calendar {
3
3
  @apply ax-w-80 ax-block ax-border ax-border-solid ax-border-light-300 ax-rounded ax-bg-white ax-select-none dark:ax-bg-white/[0.03] dark:ax-border-transparent;
4
- @include screen(mobile){
4
+ @include screen(mobile) {
5
5
  @apply ax-w-full;
6
6
  }
7
+ &.ax-rtl {
8
+ .ax-calendar-header {
9
+ .ax-calendar-header-buttons {
10
+ .ax-prev-button {
11
+ ax-icon {
12
+ @apply ax-rotate-180;
13
+ }
14
+ }
15
+ .ax-next-button {
16
+ ax-icon {
17
+ @apply ax-rotate-0;
18
+ }
19
+ }
20
+ }
21
+ }
22
+ }
7
23
  &.ax-state-disabled {
8
24
  .ax-calendar-slots {
9
25
  @apply ax-opacity-50 ax-cursor-default;
@@ -12,19 +28,23 @@
12
28
 
13
29
  .ax-calendar-header {
14
30
  @apply ax-flex ax-justify-between ax-py-1 ax-px-2 ax-border-b ax-border-light-300 ax-border-solid dark:ax-border-transparent;
15
-
16
- // .ax-nav-button {
17
- // @apply ax-col-span-8 ax-justify-start;
18
- // }
19
-
20
- // .ax-prev-button,
21
- // .ax-next-button {
22
- // @apply ax-col-span-2 ax-justify-center ax-ms-1;
23
- // }
31
+ .ax-calendar-header-buttons {
32
+ @apply ax-flex;
33
+ .ax-prev-button {
34
+ ax-icon {
35
+ @apply ax-rotate-0;
36
+ }
37
+ }
38
+ .ax-next-button {
39
+ ax-icon {
40
+ @apply ax-rotate-180;
41
+ }
42
+ }
43
+ }
24
44
  }
25
45
 
26
46
  .ax-calendar-body {
27
- @apply ax-m-2 ;
47
+ @apply ax-m-2;
28
48
 
29
49
  .ax-calendar-slots {
30
50
  @apply ax-grid;
@@ -157,17 +177,15 @@
157
177
  @apply ax-flex ax-justify-center ax-p-2 ax-bg-light-100 dark:ax-bg-transparent dark:ax-border-transparent;
158
178
  }
159
179
  }
160
- .ax-calendar-picker{
180
+ .ax-calendar-picker {
161
181
  @apply ax-flex ax-w-full;
162
- ax-picker{
182
+ ax-picker {
163
183
  @apply ax-flex-1;
164
184
  }
165
185
  }
166
- .ax-overlay-pane
167
- {
168
- ax-calendar
169
- {
170
- @apply ax-border-none
186
+ .ax-overlay-pane {
187
+ ax-calendar {
188
+ @apply ax-border-none;
171
189
  }
172
190
  }
173
191
  }
@@ -19,7 +19,7 @@
19
19
 
20
20
  ax-header,
21
21
  ax-footer {
22
- @apply ax-border-t ax-bg-white ax-p-3 ax-border-light-300 dark:ax-border-light-700 ax-flex ax-justify-between ax-items-center;
22
+ @apply ax-border-t ax-bg-white ax-p-3 ax-border-light-300 dark:ax-border-light-700 ax-flex;
23
23
  @include control-states("editor");
24
24
  }
25
25
  ax-color-palette-preview {
@@ -90,26 +90,52 @@
90
90
  background: linear-gradient(to top, rgb(0, 0, 0), rgba(0, 0, 0, 0));
91
91
  @apply ax-h-full ax-w-full ax-absolute ax-inset-0;
92
92
  }
93
+
93
94
  }
94
- .ax-color-picker-gradient-line,
95
- .ax-color-picker-transparent-line {
96
- @apply ax-h-3 ax-w-full ax-block ax-relative;
97
- }
98
- .ax-color-picker-gradient-line {
99
- background: linear-gradient(
100
- to right,
101
- rgb(255, 0, 0) 0%,
102
- rgb(255, 255, 0) 17%,
103
- rgb(0, 255, 0) 33%,
104
- rgb(0, 255, 255) 50%,
105
- rgb(0, 0, 255) 67%,
106
- rgb(255, 0, 255) 83%,
107
- rgb(255, 0, 0) 100%
108
- );
95
+ // .ax-color-picker-gradient-line,
96
+ // .ax-color-picker-transparent-line {
97
+ // @apply ax-h-3 ax-w-full ax-block ax-relative;
98
+ // }
99
+ // .ax-color-picker-gradient-line {
100
+ // background: linear-gradient(
101
+ // to right,
102
+ // rgb(255, 0, 0) 0%,
103
+ // rgb(255, 255, 0) 17%,
104
+ // rgb(0, 255, 0) 33%,
105
+ // rgb(0, 255, 255) 50%,
106
+ // rgb(0, 0, 255) 67%,
107
+ // rgb(255, 0, 255) 83%,
108
+ // rgb(255, 0, 0) 100%
109
+ // );
110
+ // }
111
+
112
+ ax-range-slider
113
+ {
114
+ &.ax-color-picker-gradient
115
+ {
116
+ input {
117
+ background: linear-gradient(
118
+ to right,
119
+ rgb(255, 0, 0) 0%,
120
+ rgb(255, 255, 0) 17%,
121
+ rgb(0, 255, 0) 33%,
122
+ rgb(0, 255, 255) 50%,
123
+ rgb(0, 0, 255) 67%,
124
+ rgb(255, 0, 255) 83%,
125
+ rgb(255, 0, 0) 100%
126
+ );
127
+ }
128
+ }
109
129
  }
110
- .ax-color-picker-transparent-line {
111
- background-image: linear-gradient(to right, rgb(245, 246, 252, 0%), rgb(0, 0, 0, 100%)),
112
- url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAADFJREFUOE9jZGBgEGHAD97gk2YcNYBhmIQBgWSAP52AwoAQwJvQRg1gACckQoC2gQgAIF8IscwEtKYAAAAASUVORK5CYII=");
130
+ ax-range-slider
131
+ {
132
+ &.ax-color-picker-transparent
133
+ {
134
+ input {
135
+ background-image: linear-gradient(to right, rgb(245, 246, 252, 0%), rgb(0, 0, 0, 100%)),
136
+ url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAADFJREFUOE9jZGBgEGHAD97gk2YcNYBhmIQBgWSAP52AwoAQwJvQRg1gACckQoC2gQgAIF8IscwEtKYAAAAASUVORK5CYII=");
137
+ }
138
+ }
113
139
  }
114
140
  }
115
141
  }
@@ -1,15 +1,40 @@
1
1
  @layer components {
2
2
  ax-data-table {
3
- @apply ax-block ax-overflow-auto ax-rounded-md ax-border-collapse ax-border ax-border-light-200 dark:ax-border-dark-400;
3
+ @apply ax-flex ax-flex-col ax-rounded-md ax-border ax-border-light-200 dark:ax-border-white/[0.06];
4
+
5
+ .ax-wrapper
6
+ {
7
+ @apply ax-flex ax-flex-1 ax-overflow-auto;
8
+ }
9
+
10
+ &>ax-header,
11
+ &>ax-footer
12
+ {
13
+ @apply ax-p-2;
14
+ ax-data-pager
15
+ {
16
+ @apply ax-border-0 ax-p-0 ax-shadow-none ax-flex-1 ax-bg-transparent;
17
+ }
18
+ }
19
+ &>ax-header
20
+ {
21
+ @apply ax-border-b;
22
+ }
23
+ &>ax-footer
24
+ {
25
+ @apply ax-border-t;
26
+
27
+ }
4
28
 
5
29
  table {
6
30
  @apply ax-relative ax-border-none ax-border-0;
7
31
 
8
32
  thead {
9
- @apply ax-sticky ax-top-0 ax-bg-white dark:ax-bg-black ;
10
- tr{
11
- @apply ax-border-b ax-border-light-200 dark:ax-border-dark-400
12
- }
33
+ @apply ax-sticky ax-top-0;
34
+ }
35
+ td,
36
+ th{
37
+ @apply ax-truncate;
13
38
  }
14
39
  }
15
40
  }
@@ -1,39 +1,48 @@
1
1
  @layer components {
2
- .ax-datapager {
3
- @apply ax-flex ax-flex-row ax-items-center ax-px-1 ax-py-1 ax-text-black ax-border ax-border-solid ax-border-light-300 ax-border-opacity-50 ax-bg-light-50 ax-rounded ax-shadow-md ax-max-w-full;
2
+ ax-data-pager {
3
+ @apply ax-flex ax-flex-wrap ax-gap-1 ax-flex-row ax-items-center ax-p-2 ax-border-opacity-50 ax-rounded ax-max-w-full ax-decoration-container;
4
+
4
5
  .ax-button-group {
5
6
  @apply ax-border-none;
7
+
6
8
  ax-button {
7
- @apply ax-border-none ax-rounded ax-mr-1;
9
+ @apply ax-border-none ax-rounded;
8
10
  }
9
11
  }
10
- .ax-wrapper {
11
- @apply ax-flex ax-flex-1 ax-flex-row ax-items-center ax-max-w-full;
12
- .ax-datapager-nav-buttons,
13
- .ax-datapager-numeric-selector,
14
- .ax-datapager-page-sizes {
15
- @apply ax-flex-initial;
16
- }
17
- .ax-datapager-info {
18
- @apply ax-flex ax-justify-end ax-flex-1 ax-order-last ax-px-2.5;
19
- }
20
- ax-button {
21
- &.ax-state-disabled {
22
- @apply ax-border-none;
23
- }
12
+
13
+ ax-data-pager-next-buttons,
14
+ ax-data-pager-prev-buttons,
15
+ ax-data-pager-numeric-selector,
16
+ ax-data-pager-page-sizes {
17
+ @apply ax-flex ax-flex-initial ax-gap-2;
18
+ }
19
+
20
+ ax-data-pager-info {
21
+ @apply ax-flex ax-justify-start md:ax-justify-end ax-items-center ax-text-sm;
22
+ }
23
+
24
+ ax-button {
25
+ @apply ax-text-base #{!important};
26
+
27
+ &.ax-state-disabled {
28
+ @apply ax-border-none;
24
29
  }
25
- .ax-datapager-nav-buttons {
26
- ax-button {
27
- @apply ax-p-1;
28
- }
30
+ }
31
+
32
+ ax-data-pager-page-sizes {
33
+ @apply ax-flex ax-justify-start ax-gap-1 ax-items-center #{!important};
34
+
35
+ span {
36
+ @apply ax-text-sm;
29
37
  }
30
38
  }
31
- .ax-datapager-input-selector {
32
- @apply ax-px-1;
33
- --ax-base-ratio: 4;
39
+
40
+
41
+
42
+
43
+ ax-data-pager-input-selector {
34
44
  .ax-input {
35
- width: calc(var(--ax-base-size) * var(--ax-base-ratio) * 1.5);
36
- text-align: center;
45
+ width: calc(var(--ax-base-size) * var(--ax-base-ratio) * 1.5) #{!important};
37
46
  }
38
47
  }
39
48
  }
@@ -1,15 +1,23 @@
1
1
  @layer components {
2
2
 
3
+ .ax-decoration-container,
4
+ ax-header,
5
+ ax-footer
6
+ {
7
+ @apply ax-flex ax-justify-between ax-items-center ax-gap-2;
3
8
 
4
- ax-header {
5
- @apply ax-border-b;
6
-
7
- & > ax-prefix,
8
- & > ax-suffix {
9
- @apply ax-flex ax-items-center;
9
+ &>ax-prefix,
10
+ &>ax-suffix {
11
+ @apply ax-flex ax-flex-auto ax-flex-row ax-gap-2 ax-items-center ;
12
+ }
13
+ &>ax-prefix{
14
+ @apply ax-order-first ax-justify-start ax-items-center ;
15
+ }
16
+ &>ax-suffix {
17
+ @apply ax-order-last ax-justify-end ax-items-center ;
10
18
  }
11
- }
12
19
 
20
+ }
13
21
 
14
22
  ax-title {
15
23
  @apply ax-font-medium;
@@ -21,9 +29,9 @@
21
29
 
22
30
  ax-close-button {
23
31
  ax-icon {
24
- @apply ax-text-light-300 dark:ax-text-light-200 ax-cursor-pointer ax-text-xl;
32
+ @apply ax-text-light-100 dark:ax-text-light-200 ax-cursor-pointer ax-text-xl;
25
33
  &:hover {
26
- @apply ax-text-light-500 dark:ax-text-light-100;
34
+ @apply ax-text-light-300 dark:ax-text-light-100;
27
35
  }
28
36
  }
29
37
  }
@@ -18,13 +18,17 @@
18
18
  @apply ax-flex ax-flex-col ax-max-w-[95%] ax-h-full ax-animate-duration-300 ax-transition-all #{!important};
19
19
  ax-header,
20
20
  ax-footer {
21
- @apply ax-gap-2 ax-bg-white ax-p-3 ax-border-light-300 dark:ax-border-light-700 ax-flex ax-justify-between ax-items-center;
21
+ @apply ax-bg-white ax-p-3 ax-border-light-300 dark:ax-border-light-700 ;
22
22
  @include control-states("editor");
23
23
  }
24
24
  ax-footer
25
25
  {
26
26
  @apply ax-border-t;
27
27
  }
28
+ ax-header
29
+ {
30
+ @apply ax-border-b;
31
+ }
28
32
  &.ax-preload {
29
33
  @apply ax-animate-duration-[0ms] ax-transition-none #{!important};
30
34
  }
@@ -16,13 +16,17 @@
16
16
  @include control-states("surface");
17
17
  ax-header,
18
18
  ax-footer {
19
- @apply ax-bg-white ax-p-3 ax-border-light-300 dark:ax-border-light-700 ax-flex ax-justify-between ax-items-center;
19
+ @apply ax-bg-white ax-p-3 ax-border-light-300 dark:ax-border-light-700 ;
20
20
  @include control-states("editor");
21
21
  }
22
22
  ax-footer
23
23
  {
24
24
  @apply ax-border-t;
25
25
  }
26
+ ax-header
27
+ {
28
+ @apply ax-border-b;
29
+ }
26
30
  @include screen(mobile){
27
31
  @apply ax-rounded-b-none;
28
32
  }
@@ -54,7 +58,7 @@
54
58
  ax-button-item {
55
59
  height: calc(var(--ax-base-size) * var(--ax-base-ratio)) !important;
56
60
  line-height: calc((var(--ax-base-size) * var(--ax-base-ratio)) / 2) !important;
57
- @apply ax-relative ax-inline-flex ax-items-center ax-justify-start ax-px-4 ax-text-sm ax-text-light-600 ax-cursor-pointer ax-select-none;
61
+ @apply ax-relative ax-inline-flex ax-items-center ax-justify-start ax-px-2 ax-text-sm ax-text-light-600 ax-cursor-pointer ax-select-none;
58
62
 
59
63
  &.ax-divide {
60
64
  @apply ax-border-t ax-border ax-border-solid;
@@ -57,7 +57,7 @@
57
57
  *,
58
58
  ax-button,
59
59
  ax-addon {
60
- @apply ax-rounded-s;
60
+ @apply ax-rounded-s;
61
61
  }
62
62
  }
63
63
 
@@ -99,6 +99,11 @@
99
99
  @apply ax-text-base;
100
100
  }
101
101
  }
102
+ &.ax-light-blank{
103
+ &:hover{
104
+ @apply ax-bg-transparent #{!important};
105
+ }
106
+ }
102
107
  }
103
108
 
104
109
  &.ax-state-disabled {
@@ -1,6 +1,6 @@
1
1
  @layer components{
2
2
  fieldset{
3
- @apply ax-grid ax-col-span-6 ax-grid-cols-6 ax-gap-4 ax-border ax-border-solid ax-border-gray-300 ax-p-3 ax-rounded;
3
+ @apply ax-grid ax-col-span-6 ax-grid-cols-6 ax-gap-4 ax-border ax-border-solid ax-border-light-300 ax-p-3 ax-rounded;
4
4
  legend{
5
5
  @apply ax-text-sm ax-px-1;
6
6
  }
@@ -5,13 +5,17 @@
5
5
  @include control-states("surface");
6
6
  ax-header,
7
7
  ax-footer {
8
- @apply ax-bg-white ax-p-3 ax-border-light-300 dark:ax-border-light-700 ax-flex ax-justify-between ax-items-center;
8
+ @apply ax-bg-white ax-p-3 ax-border-light-300 dark:ax-border-light-700;
9
9
  @include control-states("editor");
10
10
  }
11
11
  ax-footer
12
12
  {
13
13
  @apply ax-border-t;
14
14
  }
15
+ ax-header
16
+ {
17
+ @apply ax-border-b;
18
+ }
15
19
  .ax-popup-main-container {
16
20
  @apply ax-overflow-auto ax-flex-1;
17
21
  }
@@ -1,7 +1,8 @@
1
1
  @layer components {
2
- .ax-range-slider {
2
+ ax-range-slider {
3
3
  @apply ax-w-full;
4
- .ax-range-slider-input {
4
+ --ax-current-value:0%;
5
+ input {
5
6
  @apply ax-appearance-none ax-w-full ax-h-2 ax-bg-light-100 ax-rounded-full ax-outline-none ax-transition-all dark:ax-bg-light-600;
6
7
  &::-webkit-slider-thumb {
7
8
  @apply ax-appearance-none ax-w-5 ax-h-5 ax-bg-white ax-shadow-sm ax-border ax-border-solid ax-border-light-300 ax-rounded-full ax-cursor-pointer dark:ax-bg-light-500;
@@ -11,5 +12,61 @@
11
12
  }
12
13
 
13
14
  }
15
+
16
+ &.ax-primary-default
17
+ {
18
+ input {
19
+ background: linear-gradient(to right, rgb(var(--ax-color-primary-500)) 0%, rgb(var(--ax-color-primary-500)) var(--ax-current-value),rgb(var(--ax-color-light-100)) var(--ax-current-value), rgb(var(--ax-color-light-100)) 100%);
20
+ }
21
+ }
22
+
23
+ &.ax-secondary-default
24
+ {
25
+ input {
26
+ background: linear-gradient(to right, rgb(var(--ax-color-secondary-500)) 0%, rgb(var(--ax-color-secondary-500)) var(--ax-current-value),rgb(var(--ax-color-light-100)) var(--ax-current-value), rgb(var(--ax-color-light-100)) 100%);
27
+ }
28
+ }
29
+
30
+ &.ax-danger-default
31
+ {
32
+ input {
33
+ background: linear-gradient(to right, rgb(var(--ax-color-danger-500)) 0%, rgb(var(--ax-color-danger-500)) var(--ax-current-value),rgb(var(--ax-color-light-100)) var(--ax-current-value), rgb(var(--ax-color-light-100)) 100%);
34
+ }
35
+ }
36
+
37
+ &.ax-success-default
38
+ {
39
+ input {
40
+ background: linear-gradient(to right, rgb(var(--ax-color-success-500)) 0%, rgb(var(--ax-color-success-500)) var(--ax-current-value),rgb(var(--ax-color-light-100)) var(--ax-current-value), rgb(var(--ax-color-light-100)) 100%);
41
+ }
42
+ }
43
+
44
+ &.ax-warning-default
45
+ {
46
+ input {
47
+ background: linear-gradient(to right, rgb(var(--ax-color-warning-500)) 0%, rgb(var(--ax-color-warning-500)) var(--ax-current-value),rgb(var(--ax-color-light-100)) var(--ax-current-value), rgb(var(--ax-color-light-100)) 100%);
48
+ }
49
+ }
50
+
51
+ &.ax-info-default
52
+ {
53
+ input {
54
+ background: linear-gradient(to right, rgb(var(--ax-color-info-500)) 0%, rgb(var(--ax-color-info-500)) var(--ax-current-value),rgb(var(--ax-color-light-100)) var(--ax-current-value), rgb(var(--ax-color-light-100)) 100%);
55
+ }
56
+ }
57
+
58
+ &.ax-light-default
59
+ {
60
+ input {
61
+ background: linear-gradient(to right, rgb(var(--ax-color-light-500)) 0%, rgb(var(--ax-color-light-500)) var(--ax-current-value),rgb(var(--ax-color-light-100)) var(--ax-current-value), rgb(var(--ax-color-light-100)) 100%);
62
+ }
63
+ }
64
+
65
+ &.ax-dark-default
66
+ {
67
+ input {
68
+ background: linear-gradient(to right, rgb(var(--ax-color-dark-500)) 0%, rgb(var(--ax-color-dark-500)) var(--ax-current-value),rgb(var(--ax-color-light-100)) var(--ax-current-value), rgb(var(--ax-color-light-100)) 100%);
69
+ }
70
+ }
14
71
  }
15
72
  }
@@ -1,26 +1,59 @@
1
1
  @layer components {
2
2
  .ax-table {
3
- @apply ax-w-full ax-rounded-md ax-border-collapse ax-border ax-border-light-200 dark:ax-border-dark-400;
3
+ @apply ax-w-full ax-rounded-md ax-border-collapse ax-border ax-border-light-200 dark:ax-border-white/[0.06] ;
4
4
  td {
5
- @apply ax-border-b ax-border-light-200 dark:ax-border-dark-400 ax-px-6 ax-py-4 ax-text-sm;
5
+ @apply ax-border-b ax-border-light-200 dark:ax-border-white/[0.06] ax-px-6 ax-py-4 ax-text-sm;
6
6
  }
7
7
  thead {
8
+ @apply ax-bg-light-100 dark:ax-bg-light-700 ax-shadow-sm ax-border-b ax-border-light-200 dark:ax-border-white/[0.06];
8
9
  th {
9
10
  @apply ax-text-sm ax-font-bold ax-text-start ax-py-4 ax-px-6;
10
11
  }
11
- tr {
12
- @apply ax-border-b ax-border-light-200 dark:ax-border-dark-400;
13
- }
12
+
14
13
  }
15
14
  &.ax-table-alternate {
16
15
  tbody {
17
16
  tr {
18
- &:nth-child(odd) {
17
+ &:nth-child(even) {
19
18
  @apply ax-bg-light-100 dark:ax-bg-dark-400/20;
20
19
  }
21
20
  }
22
21
  }
23
22
  }
23
+ &.ax-table-bordered {
24
+ thead {
25
+ th {
26
+ @apply ax-border-t-0 #{!important};
27
+ }
28
+ }
29
+ tbody {
30
+
31
+ tr {
32
+ &:last-child {
33
+ td {
34
+ @apply ax-border-b-0;
35
+ }
36
+ }
37
+ td {
38
+ &:last-child {
39
+ @apply ax-border-b-0;
40
+ }
41
+ }
42
+ }
43
+ }
44
+
45
+ td,
46
+ th {
47
+ @apply ax-border ax-border-light-200 dark:ax-border-white/[0.06];
48
+ &:first-child {
49
+ @apply ax-border-s-0;
50
+ }
51
+ &:last-child {
52
+ @apply ax-border-e-0;
53
+ }
54
+ }
55
+
56
+ }
24
57
  @media screen and (max-width: 601px) {
25
58
  &.ax-table-responsive {
26
59
  @apply ax-break-words ax-block ax-border-0;
@@ -36,7 +69,7 @@
36
69
  }
37
70
  }
38
71
  tr {
39
- @apply ax-border ax-border-light-200 dark:ax-border-dark-400;
72
+ @apply ax-border ax-border-light-200 dark:ax-border-white/[0.06];
40
73
  }
41
74
  tr,
42
75
  tbody {
@@ -49,17 +49,17 @@
49
49
  @include control-states("editor");
50
50
 
51
51
  ax-tab-item {
52
- @apply ax-bg-white ax-border-r ax-border-b-2 ax-border-solid ax-border-light-300 dark:ax-text-light-200;
52
+ @apply ax-bg-white ax-border-e ax-border-b-2 ax-border-solid ax-border-light-300 dark:ax-text-light-200;
53
53
  @include control-states("editor");
54
54
 
55
55
  border-bottom-color: transparent !important;
56
56
 
57
57
  &:first-child {
58
- @apply ax-rounded-l;
58
+ @apply ax-rounded-s;
59
59
  }
60
60
 
61
61
  &:last-child {
62
- @apply ax-rounded-r ax-border-r-0;
62
+ @apply ax-rounded-e ax-border-e-0;
63
63
  }
64
64
 
65
65
  &:hover,