asma-ui-core 3.4.1 → 3.5.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.
@@ -0,0 +1,164 @@
1
+ @import 'color-variables/rootVariables.css';
2
+ @import 'components-colors/inputVariables.css';
3
+ @import 'color-variables/defaultTokens.css';
4
+ @import 'color-variables/fretexTokens.css';
5
+ @import 'color-variables/jadeTokens.css';
6
+
7
+ @tailwind base;
8
+ @tailwind components;
9
+ @tailwind utilities;
10
+
11
+ @layer utilities {
12
+ .border-solid {
13
+ border-style: solid;
14
+ }
15
+
16
+ .border-r-solid {
17
+ border-right-style: solid;
18
+ }
19
+
20
+ .border-l-solid {
21
+ border-left-style: solid;
22
+ }
23
+
24
+ .border-b-solid {
25
+ border-bottom-style: solid;
26
+ }
27
+
28
+ .border-t-solid {
29
+ border-top-style: solid;
30
+ }
31
+
32
+ .border-y-solid {
33
+ border-top-style: solid;
34
+ border-bottom-style: solid;
35
+ }
36
+
37
+ .absolute-center {
38
+ @apply absolute left-1/2 top-1/2 -translate-x-1/2 -translate-y-1/2;
39
+ }
40
+
41
+ .noselect {
42
+ -webkit-touch-callout: none; /* iOS Safari */
43
+ -webkit-user-select: none; /* Safari */
44
+ -khtml-user-select: none; /* Konqueror HTML */
45
+ -moz-user-select: none; /* Old versions of Firefox */
46
+ -ms-user-select: none; /* Internet Explorer/Edge */
47
+ user-select: none; /* Non-prefixed version, currently
48
+ supported by Chrome, Edge, Opera and Firefox */
49
+ }
50
+
51
+ .allselect {
52
+ -webkit-touch-callout: all; /* iOS Safari */
53
+ -webkit-user-select: all; /* Safari */
54
+ -khtml-user-select: all; /* Konqueror HTML */
55
+ -moz-user-select: all; /* Old versions of Firefox */
56
+ -ms-user-select: all; /* Internet Explorer/Edge */
57
+ user-select: all; /* Non-prefixed version, currently
58
+ supported by Chrome, Edge, Opera and Firefox */
59
+ }
60
+
61
+ .overflow-wrap-anywhere {
62
+ word-break: break-word !important; /* Chrome, Safari */
63
+ overflow-wrap: anywhere !important; /* Firefox */
64
+ }
65
+
66
+ .overflow-scroll::-webkit-scrollbar {
67
+ display: none;
68
+ }
69
+
70
+ /* @font-face {
71
+ font-family: 'Roboto';
72
+ src: url('./fonts/roboto/Roboto-Regular.ttf') format('truetype');
73
+ font-weight: 400;
74
+ font-style: normal;
75
+ }
76
+
77
+
78
+ @font-face {
79
+ font-family: 'Roboto';
80
+ src: url('./fonts/roboto/Roboto-Bold.ttf') format('truetype');
81
+ font-weight: 700;
82
+ font-style: normal;
83
+ }
84
+
85
+
86
+ @font-face {
87
+ font-family: 'Roboto';
88
+ src: url('./fonts/roboto/Roboto-BoldItalic.ttf') format('truetype');
89
+ font-weight: 700;
90
+ font-style: italic;
91
+ }
92
+
93
+
94
+ @font-face {
95
+ font-family: 'Roboto';
96
+ src: url('./fonts/roboto/Roboto-Black.ttf') format('truetype');
97
+ font-weight: 900;
98
+ font-style: normal;
99
+ }
100
+
101
+
102
+ @font-face {
103
+ font-family: 'Roboto';
104
+ src: url('./fonts/roboto/Roboto-BlackItalic.ttf') format('truetype');
105
+ font-weight: 900;
106
+ font-style: italic;
107
+ }
108
+
109
+
110
+ @font-face {
111
+ font-family: 'Roboto';
112
+ src: url('./fonts/roboto/Roboto-Light.ttf') format('truetype');
113
+ font-weight: 300;
114
+ font-style: normal;
115
+ }
116
+
117
+
118
+ @font-face {
119
+ font-family: 'Roboto';
120
+ src: url('./fonts/roboto/Roboto-LightItalic.ttf') format('truetype');
121
+ font-weight: 300;
122
+ font-style: italic;
123
+ }
124
+
125
+
126
+ @font-face {
127
+ font-family: 'Roboto';
128
+ src: url('./fonts/roboto/Roboto-Medium.ttf') format('truetype');
129
+ font-weight: 500;
130
+ font-style: normal;
131
+ }
132
+
133
+
134
+ @font-face {
135
+ font-family: 'Roboto';
136
+ src: url('./fonts/roboto/Roboto-MediumItalic.ttf') format('truetype');
137
+ font-weight: 500;
138
+ font-style: italic;
139
+ }
140
+
141
+
142
+ @font-face {
143
+ font-family: 'Roboto';
144
+ src: url('./fonts/roboto/Roboto-Thin.ttf') format('truetype');
145
+ font-weight: 100;
146
+ font-style: normal;
147
+ }
148
+
149
+
150
+ @font-face {
151
+ font-family: 'Roboto';
152
+ src: url('./fonts/roboto/Roboto-ThinItalic.ttf') format('truetype');
153
+ font-weight: 100;
154
+ font-style: italic;
155
+ }
156
+
157
+
158
+ @font-face {
159
+ font-family: 'Roboto';
160
+ src: url('./fonts/roboto/Roboto-Italic.ttf') format('truetype');
161
+ font-weight: 400;
162
+ font-style: italic;
163
+ } */
164
+ }