|
1 | 1 | .buttonOutlined { |
2 | | - @apply outline-none font-semibold leading-relaxed border button-shadow bg-transparent; |
| 2 | + @apply outline-none font-semibold leading-relaxed border-[1.5px] bg-white; |
3 | 3 |
|
4 | 4 | &:focus { |
5 | | - @apply outline-none widget-shadow-lightblue; |
| 5 | + @apply outline outline-button-2; |
| 6 | + } |
| 7 | + |
| 8 | + &:active { |
| 9 | + box-shadow: inset 0 2px 4px 0 rgb(0 0 0 / 0.25); |
6 | 10 | } |
7 | 11 |
|
8 | 12 | &:disabled { |
9 | | - @apply cursor-default border-acc-light-text text-acc-light-text; |
| 13 | + @apply cursor-default bg-[#C1C3D0] text-acc-darkgrey border-transparent; |
10 | 14 |
|
11 | 15 | &:hover { |
12 | | - @apply border-acc-light-text text-acc-light-text; |
| 16 | + @apply bg-[#C1C3D0]; |
13 | 17 | } |
14 | 18 | } |
15 | 19 | } |
|
20 | 24 | @apply border-button-1 text-button-1; |
21 | 25 |
|
22 | 26 | &:hover { |
23 | | - @apply border-button-2 text-button-2; |
| 27 | + @apply bg-button-1/10; |
24 | 28 | } |
25 | 29 | } |
26 | 30 |
|
27 | 31 | .color-dark { |
28 | 32 | @apply border-primary text-primary; |
29 | 33 |
|
30 | 34 | &:hover { |
31 | | - @apply border-acc-hoverblue text-acc-hoverblue; |
| 35 | + @apply bg-primary/10; |
32 | 36 | } |
33 | 37 | } |
34 | 38 |
|
35 | 39 | .color-red { |
36 | 40 | @apply border-acc-red text-acc-red; |
37 | 41 |
|
38 | 42 | &:hover { |
39 | | - @apply border-acc-hoverred text-acc-hoverred; |
| 43 | + @apply bg-acc-red/10; |
40 | 44 | } |
41 | 45 | } |
42 | 46 |
|
43 | 47 | .color-green { |
44 | 48 | @apply border-acc-green text-acc-green; |
45 | 49 |
|
46 | 50 | &:hover { |
47 | | - @apply border-acc-hovergreen text-acc-hovergreen; |
| 51 | + @apply bg-acc-green/10; |
| 52 | + } |
| 53 | +} |
| 54 | + |
| 55 | +.color-white { |
| 56 | + @apply bg-transparent text-white border-white/30; |
| 57 | + |
| 58 | + &:hover { |
| 59 | + @apply border-white bg-white/10; |
48 | 60 | } |
49 | 61 | } |
50 | 62 |
|
|
61 | 73 | /* SIZE VARIANTS */ |
62 | 74 |
|
63 | 75 | .size-small { |
64 | | - @apply px-3 py-0.5 text-sm; |
| 76 | + @apply border px-4 py-2 text-sm; |
65 | 77 | } |
66 | 78 |
|
67 | 79 | .size-medium { |
68 | | - @apply px-6 py-1.5 text-base; |
| 80 | + @apply px-6 py-2 text-base; |
69 | 81 | } |
70 | 82 |
|
71 | 83 | .size-large { |
72 | | - @apply px-8 py-2 text-base; |
| 84 | + @apply px-8 py-2 text-lg; |
73 | 85 | } |
74 | 86 |
|
75 | 87 | /* ICON */ |
|
81 | 93 | @apply mr-2; |
82 | 94 | } |
83 | 95 | } |
| 96 | + |
| 97 | +/* LOADING */ |
| 98 | + |
| 99 | +.loader { |
| 100 | + @apply flex items-center; |
| 101 | +} |
| 102 | + |
| 103 | +.invis { |
| 104 | + @apply invisible; |
| 105 | +} |
0 commit comments