boottent-design 0.1.240 → 0.1.242
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.
- package/dist/DESIGN.md +2 -2
- package/dist/foundation.css +107 -29
- package/package.json +1 -1
package/dist/DESIGN.md
CHANGED
package/dist/foundation.css
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
|
-
/*
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
/* Tailwind v3 preflight, mirrored verbatim except for two adjustments so it works as a
|
|
2
|
+
drop-in stylesheet for consumers (not as @tailwind base output):
|
|
3
|
+
- Element selectors are wrapped in :where() to keep specificity 0, so consumer-defined
|
|
4
|
+
element rules (e.g., legacy `h1 { font-size: 3rem !important }`) automatically win and
|
|
5
|
+
non-DS UI is unaffected. DS components still get the same base reset they get in
|
|
6
|
+
Storybook (where it comes from `@tailwind base`).
|
|
7
|
+
- The unwrappable universal selector keeps Tailwind's own specificity. */
|
|
4
8
|
|
|
5
9
|
*,
|
|
6
10
|
::before,
|
|
@@ -8,14 +12,24 @@
|
|
|
8
12
|
box-sizing: border-box;
|
|
9
13
|
border-width: 0;
|
|
10
14
|
border-style: solid;
|
|
11
|
-
border-color:
|
|
15
|
+
border-color: #e5e7eb;
|
|
12
16
|
}
|
|
13
17
|
|
|
18
|
+
::before,
|
|
19
|
+
::after {
|
|
20
|
+
--tw-content: "";
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
:where(:host),
|
|
14
24
|
:where(html) {
|
|
25
|
+
line-height: 1.5;
|
|
15
26
|
-webkit-text-size-adjust: 100%;
|
|
16
27
|
-moz-tab-size: 4;
|
|
17
28
|
tab-size: 4;
|
|
18
|
-
|
|
29
|
+
font-family: Pretendard, system-ui, sans-serif;
|
|
30
|
+
font-feature-settings: normal;
|
|
31
|
+
font-variation-settings: normal;
|
|
32
|
+
-webkit-tap-highlight-color: transparent;
|
|
19
33
|
}
|
|
20
34
|
|
|
21
35
|
:where(body) {
|
|
@@ -29,20 +43,13 @@
|
|
|
29
43
|
border-top-width: 1px;
|
|
30
44
|
}
|
|
31
45
|
|
|
46
|
+
:where(abbr[title]) {
|
|
47
|
+
text-decoration: underline dotted;
|
|
48
|
+
}
|
|
49
|
+
|
|
32
50
|
:where(h1, h2, h3, h4, h5, h6) {
|
|
33
51
|
font-size: inherit;
|
|
34
52
|
font-weight: inherit;
|
|
35
|
-
margin: 0;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
:where(p, blockquote, dl, dd, figure) {
|
|
39
|
-
margin: 0;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
:where(ol, ul, menu) {
|
|
43
|
-
list-style: none;
|
|
44
|
-
margin: 0;
|
|
45
|
-
padding: 0;
|
|
46
53
|
}
|
|
47
54
|
|
|
48
55
|
:where(a) {
|
|
@@ -54,37 +61,78 @@
|
|
|
54
61
|
font-weight: bolder;
|
|
55
62
|
}
|
|
56
63
|
|
|
64
|
+
:where(code, kbd, samp, pre) {
|
|
65
|
+
font-family:
|
|
66
|
+
ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
|
|
67
|
+
"Courier New", monospace;
|
|
68
|
+
font-feature-settings: normal;
|
|
69
|
+
font-variation-settings: normal;
|
|
70
|
+
font-size: 1em;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
:where(small) {
|
|
74
|
+
font-size: 80%;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
:where(sub, sup) {
|
|
78
|
+
font-size: 75%;
|
|
79
|
+
line-height: 0;
|
|
80
|
+
position: relative;
|
|
81
|
+
vertical-align: baseline;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
:where(sub) {
|
|
85
|
+
bottom: -0.25em;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
:where(sup) {
|
|
89
|
+
top: -0.5em;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
:where(table) {
|
|
93
|
+
text-indent: 0;
|
|
94
|
+
border-color: inherit;
|
|
95
|
+
border-collapse: collapse;
|
|
96
|
+
}
|
|
97
|
+
|
|
57
98
|
:where(button, input, optgroup, select, textarea) {
|
|
58
99
|
font-family: inherit;
|
|
100
|
+
font-feature-settings: inherit;
|
|
101
|
+
font-variation-settings: inherit;
|
|
59
102
|
font-size: 100%;
|
|
60
103
|
font-weight: inherit;
|
|
61
104
|
line-height: inherit;
|
|
105
|
+
letter-spacing: inherit;
|
|
62
106
|
color: inherit;
|
|
63
107
|
margin: 0;
|
|
64
108
|
padding: 0;
|
|
65
109
|
}
|
|
66
110
|
|
|
67
|
-
:where(button,
|
|
111
|
+
:where(button, select) {
|
|
112
|
+
text-transform: none;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
:where(button, input[type="button"], input[type="reset"], input[type="submit"]) {
|
|
68
116
|
-webkit-appearance: button;
|
|
69
117
|
background-color: transparent;
|
|
70
118
|
background-image: none;
|
|
71
|
-
cursor: pointer;
|
|
72
119
|
}
|
|
73
120
|
|
|
74
|
-
:where(
|
|
75
|
-
|
|
76
|
-
vertical-align: middle;
|
|
121
|
+
:where(progress) {
|
|
122
|
+
vertical-align: baseline;
|
|
77
123
|
}
|
|
78
124
|
|
|
79
|
-
:where(
|
|
80
|
-
|
|
81
|
-
|
|
125
|
+
:where([type="search"]) {
|
|
126
|
+
-webkit-appearance: textfield;
|
|
127
|
+
outline-offset: -2px;
|
|
82
128
|
}
|
|
83
129
|
|
|
84
|
-
:where(
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
130
|
+
:where(summary) {
|
|
131
|
+
display: list-item;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
:where(blockquote, dl, dd, h1, h2, h3, h4, h5, h6, hr, figure, p, pre) {
|
|
135
|
+
margin: 0;
|
|
88
136
|
}
|
|
89
137
|
|
|
90
138
|
:where(fieldset) {
|
|
@@ -96,11 +144,27 @@
|
|
|
96
144
|
padding: 0;
|
|
97
145
|
}
|
|
98
146
|
|
|
147
|
+
:where(ol, ul, menu) {
|
|
148
|
+
list-style: none;
|
|
149
|
+
margin: 0;
|
|
150
|
+
padding: 0;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
:where(dialog) {
|
|
154
|
+
padding: 0;
|
|
155
|
+
}
|
|
156
|
+
|
|
99
157
|
:where(textarea) {
|
|
100
158
|
resize: vertical;
|
|
101
159
|
}
|
|
102
160
|
|
|
103
|
-
:where(
|
|
161
|
+
:where(input)::placeholder,
|
|
162
|
+
:where(textarea)::placeholder {
|
|
163
|
+
opacity: 1;
|
|
164
|
+
color: #9ca3af;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
:where(button, [role="button"]) {
|
|
104
168
|
cursor: pointer;
|
|
105
169
|
}
|
|
106
170
|
|
|
@@ -108,6 +172,20 @@
|
|
|
108
172
|
cursor: default;
|
|
109
173
|
}
|
|
110
174
|
|
|
175
|
+
:where(img, svg, video, canvas, audio, iframe, embed, object) {
|
|
176
|
+
display: block;
|
|
177
|
+
vertical-align: middle;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
:where(img, video) {
|
|
181
|
+
max-width: 100%;
|
|
182
|
+
height: auto;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
:where([hidden]) {
|
|
186
|
+
display: none;
|
|
187
|
+
}
|
|
188
|
+
|
|
111
189
|
@font-face {
|
|
112
190
|
font-family: "Pretendard";
|
|
113
191
|
src:
|