better_ui 0.4.0 → 0.5.1

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 (92) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +141 -189
  3. data/app/assets/stylesheets/better_ui/_base.scss +9 -0
  4. data/app/assets/stylesheets/better_ui/_components.scss +2 -0
  5. data/app/assets/stylesheets/better_ui/_utilities.scss +14 -0
  6. data/app/assets/stylesheets/better_ui/application.css +3 -1
  7. data/app/assets/stylesheets/better_ui/components/_avatar.scss +200 -0
  8. data/app/assets/stylesheets/better_ui/components/_badge.scss +154 -0
  9. data/app/assets/stylesheets/better_ui/components/_breadcrumb.scss +106 -0
  10. data/app/assets/stylesheets/better_ui/components/_button.scss +105 -0
  11. data/app/assets/stylesheets/better_ui/components/_card.scss +60 -0
  12. data/app/assets/stylesheets/better_ui/components/_heading.scss +81 -0
  13. data/app/assets/stylesheets/better_ui/components/_icon.scss +134 -0
  14. data/app/assets/stylesheets/better_ui/components/_index.scss +17 -0
  15. data/app/assets/stylesheets/better_ui/components/_link.scss +100 -0
  16. data/app/assets/stylesheets/better_ui/components/_panel.scss +104 -0
  17. data/app/assets/stylesheets/better_ui/components/_spinner.scss +129 -0
  18. data/app/assets/stylesheets/better_ui/components/_table.scss +156 -0
  19. data/app/assets/stylesheets/better_ui/components/_variables.scss +1 -0
  20. data/app/assets/stylesheets/better_ui.scss +4 -0
  21. data/app/components/better_ui/application/alert_component.html.erb +1 -1
  22. data/app/components/better_ui/application/alert_component.rb +95 -89
  23. data/app/components/better_ui/application/card_component.html.erb +24 -0
  24. data/app/components/better_ui/application/card_component.rb +53 -0
  25. data/app/components/better_ui/application/card_container_component.html.erb +8 -0
  26. data/app/components/better_ui/application/card_container_component.rb +14 -0
  27. data/app/components/better_ui/application/toast_component.rb +92 -57
  28. data/app/components/better_ui/general/avatar_component.html.erb +19 -0
  29. data/app/components/better_ui/general/avatar_component.rb +171 -0
  30. data/app/components/better_ui/general/badge_component.html.erb +19 -0
  31. data/app/components/better_ui/general/badge_component.rb +135 -0
  32. data/app/components/better_ui/general/breadcrumb_component.html.erb +7 -31
  33. data/app/components/better_ui/general/breadcrumb_component.rb +64 -66
  34. data/app/components/better_ui/general/button_component.html.erb +6 -6
  35. data/app/components/better_ui/general/button_component.rb +62 -95
  36. data/app/components/better_ui/general/heading_component.html.erb +1 -25
  37. data/app/components/better_ui/general/heading_component.rb +20 -113
  38. data/app/components/better_ui/general/icon_component.rb +37 -61
  39. data/app/components/better_ui/general/link_component.html.erb +17 -0
  40. data/app/components/better_ui/general/link_component.rb +132 -0
  41. data/app/components/better_ui/general/panel_component.rb +51 -56
  42. data/app/components/better_ui/general/spinner_component.html.erb +15 -0
  43. data/app/components/better_ui/general/spinner_component.rb +79 -0
  44. data/app/components/better_ui/general/table_component.html.erb +56 -20
  45. data/app/components/better_ui/general/table_component.rb +89 -87
  46. data/app/helpers/better_ui/general/components/avatar_helper.rb +17 -0
  47. data/app/helpers/better_ui/general/components/badge_helper.rb +17 -0
  48. data/app/helpers/better_ui/general/components/breadcrumb_helper.rb +17 -0
  49. data/app/helpers/better_ui/general/components/button_helper.rb +17 -0
  50. data/app/helpers/better_ui/general/components/heading_helper.rb +17 -0
  51. data/app/helpers/better_ui/general/components/icon_helper.rb +17 -0
  52. data/app/helpers/better_ui/general/components/link_helper.rb +17 -0
  53. data/app/helpers/better_ui/general/components/panel_helper.rb +16 -0
  54. data/app/helpers/better_ui/general/components/spinner_helper.rb +17 -0
  55. data/app/helpers/better_ui/general/components/table_helper.rb +17 -0
  56. data/app/helpers/better_ui/general_helper.rb +15 -0
  57. data/app/helpers/better_ui_helper.rb +12 -0
  58. data/app/views/components/better_ui/general/table/_custom_body_row.html.erb +17 -0
  59. data/app/views/components/better_ui/general/table/_custom_footer_rows.html.erb +17 -0
  60. data/app/views/components/better_ui/general/table/_custom_header_rows.html.erb +12 -0
  61. data/config/routes.rb +2 -13
  62. data/lib/better_ui/engine.rb +66 -16
  63. data/lib/better_ui/version.rb +1 -1
  64. data/lib/better_ui.rb +12 -0
  65. data/lib/generators/better_ui/install_generator.rb +103 -0
  66. data/lib/generators/better_ui/stylesheet_generator.rb +159 -0
  67. data/lib/generators/better_ui/templates/README +125 -0
  68. data/lib/generators/better_ui/templates/components/_avatar.scss +200 -0
  69. data/lib/generators/better_ui/templates/components/_badge.scss +154 -0
  70. data/lib/generators/better_ui/templates/components/_breadcrumb.scss +106 -0
  71. data/lib/generators/better_ui/templates/components/_button.scss +109 -0
  72. data/lib/generators/better_ui/templates/components/_card.scss +60 -0
  73. data/lib/generators/better_ui/templates/components/_heading.scss +81 -0
  74. data/lib/generators/better_ui/templates/components/_icon.scss +134 -0
  75. data/lib/generators/better_ui/templates/components/_index.scss +17 -0
  76. data/lib/generators/better_ui/templates/components/_link.scss +100 -0
  77. data/lib/generators/better_ui/templates/components/_panel.scss +104 -0
  78. data/lib/generators/better_ui/templates/components/_spinner.scss +129 -0
  79. data/lib/generators/better_ui/templates/components/_table.scss +156 -0
  80. data/lib/generators/better_ui/templates/components/_variables.scss +0 -0
  81. data/lib/generators/better_ui/templates/components_stylesheet.scss +35 -0
  82. data/lib/generators/better_ui/templates/index.scss +18 -0
  83. data/lib/generators/better_ui/templates/initializer.rb +41 -0
  84. metadata +120 -49
  85. data/app/assets/javascripts/better_ui/controllers/navbar_controller.js +0 -138
  86. data/app/assets/javascripts/better_ui/controllers/sidebar_controller.js +0 -211
  87. data/app/assets/javascripts/better_ui/controllers/toast_controller.js +0 -161
  88. data/app/assets/javascripts/better_ui/index.js +0 -159
  89. data/app/assets/javascripts/better_ui/toast_manager.js +0 -77
  90. data/app/components/better_ui/theme_helper.rb +0 -169
  91. data/app/controllers/better_ui/docs_controller.rb +0 -34
  92. data/app/helpers/better_ui_application_helper.rb +0 -99
@@ -0,0 +1,106 @@
1
+ @layer components {
2
+ // Classe base per il breadcrumb (Block)
3
+ .bui-breadcrumb {
4
+ @apply flex items-center flex-wrap;
5
+
6
+ // Elements
7
+ &__list {
8
+ @apply flex flex-wrap items-center;
9
+ }
10
+
11
+ &__item {
12
+ @apply flex items-center;
13
+ }
14
+
15
+ &__separator {
16
+ @apply mx-2;
17
+
18
+ // Modifiers per il separatore
19
+ &--default {
20
+ @apply text-gray-500;
21
+ }
22
+
23
+ &--white {
24
+ @apply text-gray-400;
25
+ }
26
+
27
+ &--red {
28
+ @apply text-red-300;
29
+ }
30
+
31
+ &--rose {
32
+ @apply text-rose-300;
33
+ }
34
+
35
+ &--orange {
36
+ @apply text-orange-300;
37
+ }
38
+
39
+ &--green {
40
+ @apply text-green-300;
41
+ }
42
+
43
+ &--blue {
44
+ @apply text-blue-300;
45
+ }
46
+
47
+ &--yellow {
48
+ @apply text-yellow-600;
49
+ }
50
+
51
+ &--violet {
52
+ @apply text-violet-300;
53
+ }
54
+ }
55
+
56
+ // Modifiers (dimensioni)
57
+ &--small {
58
+ @apply text-xs;
59
+ }
60
+
61
+ &--medium {
62
+ @apply text-sm;
63
+ }
64
+
65
+ &--large {
66
+ @apply text-base;
67
+ }
68
+
69
+ // Modifiers (temi colore)
70
+ &--default {
71
+ @apply text-white;
72
+ }
73
+
74
+ &--white {
75
+ @apply text-black;
76
+ }
77
+
78
+ &--red {
79
+ @apply text-white;
80
+ }
81
+
82
+ &--rose {
83
+ @apply text-white;
84
+ }
85
+
86
+ &--orange {
87
+ @apply text-white;
88
+ }
89
+
90
+ &--green {
91
+ @apply text-white;
92
+ }
93
+
94
+ &--blue {
95
+ @apply text-white;
96
+ }
97
+
98
+ &--yellow {
99
+ @apply text-black;
100
+ }
101
+
102
+ &--violet {
103
+ @apply text-white;
104
+ }
105
+ }
106
+ }
@@ -0,0 +1,109 @@
1
+ /* ==============================
2
+ * Button Component
3
+ * ============================== */
4
+
5
+ @layer components {
6
+ // Classe base per il bottone (Block)
7
+ .bui-button {
8
+ @apply inline-flex items-center justify-center font-medium
9
+ transition-colors duration-200 rounded-md
10
+ focus:outline-none focus:ring-2 focus:ring-offset-2;
11
+
12
+ // Elements
13
+ &__icon {
14
+ @apply flex-shrink-0;
15
+
16
+ &--left {
17
+ @apply mr-2;
18
+ }
19
+
20
+ &--right {
21
+ @apply ml-2;
22
+ }
23
+ }
24
+
25
+ &__text {
26
+ @apply flex-grow;
27
+ }
28
+
29
+ // Modifiers (varianti colore)
30
+ &--default {
31
+ @apply bg-black text-white hover:bg-gray-900 focus:ring-gray-900;
32
+ }
33
+
34
+ &--white {
35
+ @apply bg-white text-black hover:bg-gray-100 focus:ring-gray-400;
36
+ }
37
+
38
+ &--red {
39
+ @apply bg-red-500 text-white hover:bg-red-600 focus:ring-red-500;
40
+ }
41
+
42
+ &--rose {
43
+ @apply bg-rose-500 text-white hover:bg-rose-600 focus:ring-rose-500;
44
+ }
45
+
46
+ &--orange {
47
+ @apply bg-orange-500 text-white hover:bg-orange-600 focus:ring-orange-500;
48
+ }
49
+
50
+ &--green {
51
+ @apply bg-green-500 text-white hover:bg-green-600 focus:ring-green-500;
52
+ }
53
+
54
+ &--blue {
55
+ @apply bg-blue-500 text-white hover:bg-blue-600 focus:ring-blue-500;
56
+ }
57
+
58
+ &--yellow {
59
+ @apply bg-yellow-500 text-black hover:bg-yellow-600 focus:ring-yellow-500;
60
+ }
61
+
62
+ &--violet {
63
+ @apply bg-violet-500 text-white hover:bg-violet-600 focus:ring-violet-500;
64
+ }
65
+
66
+ // Modifiers (dimensioni)
67
+ &--small {
68
+ @apply px-2.5 py-1.5 text-xs;
69
+ }
70
+
71
+ &--medium {
72
+ @apply px-4 py-2 text-sm;
73
+ }
74
+
75
+ &--large {
76
+ @apply px-6 py-3 text-base;
77
+ }
78
+
79
+ // Modifiers (border radius)
80
+ &--radius-none {
81
+ @apply rounded-none;
82
+ }
83
+
84
+ &--radius-small {
85
+ @apply rounded-md;
86
+ }
87
+
88
+ &--radius-medium {
89
+ @apply rounded-lg;
90
+ }
91
+
92
+ &--radius-large {
93
+ @apply rounded-xl;
94
+ }
95
+
96
+ &--radius-full {
97
+ @apply rounded-full;
98
+ }
99
+
100
+ // Modifiers (stati)
101
+ &--disabled {
102
+ @apply opacity-50 cursor-not-allowed;
103
+ }
104
+
105
+ &--full-width {
106
+ @apply w-full;
107
+ }
108
+ }
109
+ }
@@ -0,0 +1,60 @@
1
+ @layer components {
2
+ // Classe base per la card (Block)
3
+ .bui-card {
4
+ @apply bg-white border shadow-sm overflow-hidden;
5
+
6
+ // Elements
7
+ &__content {
8
+ @apply p-4;
9
+ }
10
+
11
+ &__header {
12
+ @apply p-4 border-b;
13
+ }
14
+
15
+ &__footer {
16
+ @apply p-4 border-t;
17
+ }
18
+
19
+ &__body {
20
+ @apply flex flex-col;
21
+ }
22
+
23
+ &__title {
24
+ @apply text-lg font-medium;
25
+ }
26
+
27
+ &__value {
28
+ @apply text-2xl font-bold mt-2;
29
+
30
+ &--reference {
31
+ @apply text-sm text-gray-500 mt-1;
32
+ }
33
+ }
34
+
35
+ &__trend {
36
+ @apply mt-2 inline-flex items-center px-2 py-1 text-xs font-medium rounded;
37
+ }
38
+
39
+ // Modifiers (border radius)
40
+ &--radius-none {
41
+ @apply rounded-none;
42
+ }
43
+
44
+ &--radius-small {
45
+ @apply rounded-md;
46
+ }
47
+
48
+ &--radius-medium {
49
+ @apply rounded-lg;
50
+ }
51
+
52
+ &--radius-large {
53
+ @apply rounded-xl;
54
+ }
55
+
56
+ &--radius-full {
57
+ @apply rounded-full;
58
+ }
59
+ }
60
+ }
@@ -0,0 +1,81 @@
1
+ @layer components {
2
+ // Classe base per il titolo (Block)
3
+ .bui-heading {
4
+ @apply font-bold text-gray-900 leading-tight;
5
+
6
+ // Modifiers (dimensioni/livelli)
7
+ &--1 {
8
+ @apply text-3xl sm:text-4xl;
9
+ }
10
+
11
+ &--2 {
12
+ @apply text-2xl sm:text-3xl;
13
+ }
14
+
15
+ &--3 {
16
+ @apply text-xl sm:text-2xl;
17
+ }
18
+
19
+ &--4 {
20
+ @apply text-lg sm:text-xl;
21
+ }
22
+
23
+ &--5 {
24
+ @apply text-base sm:text-lg;
25
+ }
26
+
27
+ &--6 {
28
+ @apply text-sm sm:text-base;
29
+ }
30
+
31
+ // Modifiers (varianti colore)
32
+ &--default {
33
+ @apply text-gray-900;
34
+ }
35
+
36
+ &--white {
37
+ @apply text-white;
38
+ }
39
+
40
+ &--red {
41
+ @apply text-red-600;
42
+ }
43
+
44
+ &--rose {
45
+ @apply text-rose-600;
46
+ }
47
+
48
+ &--orange {
49
+ @apply text-orange-600;
50
+ }
51
+
52
+ &--green {
53
+ @apply text-green-600;
54
+ }
55
+
56
+ &--blue {
57
+ @apply text-blue-600;
58
+ }
59
+
60
+ &--yellow {
61
+ @apply text-yellow-600;
62
+ }
63
+
64
+ &--violet {
65
+ @apply text-violet-600;
66
+ }
67
+
68
+ // Modifiers (allineamento)
69
+ &--left {
70
+ @apply text-left;
71
+ }
72
+
73
+ &--center {
74
+ @apply text-center;
75
+ }
76
+
77
+ &--right {
78
+ @apply text-right;
79
+ }
80
+ }
81
+ }
@@ -0,0 +1,134 @@
1
+ @layer components {
2
+ // Classe base per l'icona (Block)
3
+ .bui-icon {
4
+ @apply inline-flex items-center justify-center;
5
+
6
+ // Modifiers (dimensioni)
7
+ &--xs {
8
+ @apply h-3 w-3;
9
+
10
+ svg {
11
+ @apply h-3 w-3;
12
+ }
13
+ }
14
+
15
+ &--sm {
16
+ @apply h-4 w-4;
17
+
18
+ svg {
19
+ @apply h-4 w-4;
20
+ }
21
+ }
22
+
23
+ &--md {
24
+ @apply h-5 w-5;
25
+
26
+ svg {
27
+ @apply h-5 w-5;
28
+ }
29
+ }
30
+
31
+ &--lg {
32
+ @apply h-6 w-6;
33
+
34
+ svg {
35
+ @apply h-6 w-6;
36
+ }
37
+ }
38
+
39
+ &--xl {
40
+ @apply h-8 w-8;
41
+
42
+ svg {
43
+ @apply h-8 w-8;
44
+ }
45
+ }
46
+
47
+ // Modifiers (varianti colore)
48
+ &--default {
49
+ @apply text-gray-500;
50
+ }
51
+
52
+ &--white {
53
+ @apply text-white;
54
+ }
55
+
56
+ &--red {
57
+ @apply text-red-500;
58
+ }
59
+
60
+ &--rose {
61
+ @apply text-rose-500;
62
+ }
63
+
64
+ &--orange {
65
+ @apply text-orange-500;
66
+ }
67
+
68
+ &--green {
69
+ @apply text-green-500;
70
+ }
71
+
72
+ &--blue {
73
+ @apply text-blue-500;
74
+ }
75
+
76
+ &--yellow {
77
+ @apply text-yellow-500;
78
+ }
79
+
80
+ &--violet {
81
+ @apply text-violet-500;
82
+ }
83
+
84
+ // Modifiers (varianti stile)
85
+ &--solid {
86
+ @apply rounded-full p-2 bg-gray-100;
87
+ }
88
+
89
+ &--solid-primary {
90
+ @apply rounded-full p-2 text-white;
91
+
92
+ &.bui-icon--red {
93
+ @apply bg-red-500;
94
+ }
95
+
96
+ &.bui-icon--rose {
97
+ @apply bg-rose-500;
98
+ }
99
+
100
+ &.bui-icon--orange {
101
+ @apply bg-orange-500;
102
+ }
103
+
104
+ &.bui-icon--green {
105
+ @apply bg-green-500;
106
+ }
107
+
108
+ &.bui-icon--blue {
109
+ @apply bg-blue-500;
110
+ }
111
+
112
+ &.bui-icon--yellow {
113
+ @apply bg-yellow-500;
114
+ }
115
+
116
+ &.bui-icon--violet {
117
+ @apply bg-violet-500;
118
+ }
119
+ }
120
+
121
+ // Stati
122
+ &--spin {
123
+ @apply animate-spin;
124
+ }
125
+
126
+ &--pulse {
127
+ @apply animate-pulse;
128
+ }
129
+
130
+ &--fixed-width {
131
+ @apply w-5;
132
+ }
133
+ }
134
+ }
@@ -0,0 +1,17 @@
1
+ // Index file che raggruppa e riespone tutti i componenti
2
+ // Nota: È possibile utilizzare le variabili con @use "better_ui/components/variables" as vars;
3
+
4
+ // Componenti generali
5
+ @forward "button";
6
+ @forward "panel";
7
+ @forward "table";
8
+ @forward "badge";
9
+ @forward "avatar";
10
+ @forward "icon";
11
+ @forward "link";
12
+ @forward "heading";
13
+ @forward "breadcrumb";
14
+ @forward "spinner";
15
+
16
+ // Componenti applicativi
17
+ @forward "card";
@@ -0,0 +1,100 @@
1
+ @layer components {
2
+ // Classe base per il link (Block)
3
+ .bui-link {
4
+ @apply inline-flex items-center transition-colors duration-200;
5
+
6
+ // Elements
7
+ &__icon {
8
+ @apply flex-shrink-0;
9
+
10
+ &--left {
11
+ @apply mr-1.5;
12
+ }
13
+
14
+ &--right {
15
+ @apply ml-1.5;
16
+ }
17
+ }
18
+
19
+ &__text {
20
+ @apply inline;
21
+ }
22
+
23
+ // Modifiers (varianti colore)
24
+ &--default {
25
+ @apply text-gray-700 hover:text-gray-900;
26
+ }
27
+
28
+ &--white {
29
+ @apply text-white hover:text-gray-100;
30
+ }
31
+
32
+ &--red {
33
+ @apply text-red-600 hover:text-red-700;
34
+ }
35
+
36
+ &--rose {
37
+ @apply text-rose-600 hover:text-rose-700;
38
+ }
39
+
40
+ &--orange {
41
+ @apply text-orange-600 hover:text-orange-700;
42
+ }
43
+
44
+ &--green {
45
+ @apply text-green-600 hover:text-green-700;
46
+ }
47
+
48
+ &--blue {
49
+ @apply text-blue-600 hover:text-blue-700;
50
+ }
51
+
52
+ &--yellow {
53
+ @apply text-yellow-600 hover:text-yellow-700;
54
+ }
55
+
56
+ &--violet {
57
+ @apply text-violet-600 hover:text-violet-700;
58
+ }
59
+
60
+ // Modifiers (varianti stile)
61
+ &--underlined {
62
+ @apply underline decoration-1 underline-offset-2;
63
+ }
64
+
65
+ &--hover-underlined {
66
+ @apply no-underline hover:underline decoration-1 underline-offset-2;
67
+ }
68
+
69
+ &--bold {
70
+ @apply font-semibold;
71
+ }
72
+
73
+ // Modifiers (dimensioni)
74
+ &--sm {
75
+ @apply text-sm;
76
+ }
77
+
78
+ &--base {
79
+ @apply text-base;
80
+ }
81
+
82
+ &--lg {
83
+ @apply text-lg;
84
+ }
85
+
86
+ // Stati
87
+ &--active {
88
+ @apply font-medium;
89
+ }
90
+
91
+ &--disabled {
92
+ @apply pointer-events-none opacity-50;
93
+ }
94
+
95
+ // Stili specifici per bottoni che sembrano link
96
+ &--button {
97
+ @apply appearance-none bg-transparent border-none p-0 cursor-pointer;
98
+ }
99
+ }
100
+ }
@@ -0,0 +1,104 @@
1
+ @layer components {
2
+ // Classe base per il pannello (Block)
3
+ .bui-panel {
4
+ @apply border shadow-sm;
5
+
6
+ // Elements
7
+ &__header {
8
+ @apply px-4 py-3 border-b;
9
+ }
10
+
11
+ &__body {
12
+ @apply p-4;
13
+ }
14
+
15
+ &__footer {
16
+ @apply px-4 py-3 border-t;
17
+ }
18
+
19
+ &__title {
20
+ @apply text-lg font-medium;
21
+ }
22
+
23
+ // Modifiers (varianti colore)
24
+ &--default {
25
+ @apply bg-black text-white border-gray-900;
26
+
27
+ .bui-panel__header {
28
+ @apply bg-gray-900;
29
+ }
30
+
31
+ .bui-panel__footer {
32
+ @apply bg-gray-900;
33
+ }
34
+ }
35
+
36
+ &--white {
37
+ @apply bg-white text-black border-gray-200;
38
+
39
+ .bui-panel__header {
40
+ @apply bg-gray-50;
41
+ }
42
+
43
+ .bui-panel__footer {
44
+ @apply bg-gray-50;
45
+ }
46
+ }
47
+
48
+ &--red {
49
+ @apply bg-red-50 text-red-900 border-red-200;
50
+
51
+ .bui-panel__header {
52
+ @apply bg-red-100 text-red-800;
53
+ }
54
+
55
+ .bui-panel__footer {
56
+ @apply bg-red-100;
57
+ }
58
+ }
59
+
60
+ // ... altre varianti di colore ...
61
+
62
+ // Modifiers (varianti di padding)
63
+ &--padding-none {
64
+ .bui-panel__body {
65
+ @apply p-0;
66
+ }
67
+ }
68
+
69
+ &--padding-small {
70
+ .bui-panel__body {
71
+ @apply p-2;
72
+ }
73
+ }
74
+
75
+ &--padding-medium {
76
+ .bui-panel__body {
77
+ @apply p-4;
78
+ }
79
+ }
80
+
81
+ &--padding-large {
82
+ .bui-panel__body {
83
+ @apply p-6;
84
+ }
85
+ }
86
+
87
+ // Modifiers (border radius)
88
+ &--radius-none {
89
+ @apply rounded-none;
90
+ }
91
+
92
+ &--radius-small {
93
+ @apply rounded-md;
94
+ }
95
+
96
+ &--radius-medium {
97
+ @apply rounded-lg;
98
+ }
99
+
100
+ &--radius-large {
101
+ @apply rounded-xl;
102
+ }
103
+ }
104
+ }