Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ignite
GitHub Repository: ignite/cli
Path: blob/main/docs/src/css/base.css
1007 views
1
@layer base {
2
html {
3
@apply font-inter;
4
font-feature-settings: 'kern', 'liga', 'calt', 'zero' 0;
5
-webkit-font-feature-settings: 'kern', 'liga', 'calt', 'zero' 0;
6
text-size-adjust: 100%;
7
-moz-osx-font-smoothing: grayscale;
8
font-smoothing: antialiased;
9
font-variant-ligatures: contextual common-ligatures;
10
font-kerning: normal;
11
text-rendering: optimizeLegibility;
12
13
@supports (font-variation-settings: normal) {
14
@apply font-intervar
15
}
16
}
17
18
*,
19
*::before,
20
*::after {
21
box-sizing: border-box;
22
margin: 0;
23
}
24
25
svg { display: inline; }
26
27
::selection{}
28
}
29