-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathflexbox-reset.less
66 lines (51 loc) · 888 Bytes
/
flexbox-reset.less
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
*:where(:not(iframe, canvas, details, img, summary, svg, svg *, symbol *, video)) {
all : unset;
display: revert;
}
*,
*::before,
*::after {
box-sizing: border-box;
}
:where([hidden]) {
display: none;
}
:where(address, article, aside, body, dialog, div, dl, fieldset, figure, footer, form, header, hgroup, html, iframe, label, legend, li, main, menu, nav, ol, section, ul) {
display : flex;
flex-direction: column;
}
a,
button {
cursor: revert;
}
a:link {
text-decoration-thickness: from-font;
}
// remove styling from quotes
blockquote,
q {
quotes: none;
&::before,
&::after {
content: '';
content: none;
}
}
:focus-visible {
outline: revert;
}
html {
text-size-adjust: none;
}
meter {
appearance: revert;
}
:where(ol, ul, menu) {
list-style: none;
}
::placeholder {
color: unset;
}
table {
border-collapse: collapse;
}