mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-06 22:40:14 -05:00
Added postcss-import to Admin X Settings
refs. https://github.com/TryGhost/Team/issues/3151
This commit is contained in:
parent
116408e64d
commit
d8677b4f39
2 changed files with 3 additions and 8 deletions
|
@ -67,6 +67,7 @@
|
||||||
"eslint-plugin-react-refresh": "0.3.4",
|
"eslint-plugin-react-refresh": "0.3.4",
|
||||||
"eslint-plugin-tailwindcss": "3.11.0",
|
"eslint-plugin-tailwindcss": "3.11.0",
|
||||||
"postcss": "8.4.23",
|
"postcss": "8.4.23",
|
||||||
|
"postcss-import": "^15.1.0",
|
||||||
"prop-types": "15.8.1",
|
"prop-types": "15.8.1",
|
||||||
"rollup-plugin-node-builtins": "2.1.2",
|
"rollup-plugin-node-builtins": "2.1.2",
|
||||||
"storybook": "7.0.9",
|
"storybook": "7.0.9",
|
||||||
|
|
|
@ -8,12 +8,12 @@
|
||||||
@layer base {
|
@layer base {
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: "Inter";
|
font-family: "Inter";
|
||||||
src: url("./assets/fonts/Inter.ttf") format("truetype-variations");
|
src: url("./src/assets/fonts/Inter.ttf") format("truetype-variations");
|
||||||
font-weight: 100 900;
|
font-weight: 100 900;
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
@apply text-black text-base leading-normal;
|
@apply font-sans text-black text-base leading-normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
h1, h2, h3, h4, h5, h6 {
|
h1, h2, h3, h4, h5, h6 {
|
||||||
|
@ -61,9 +61,3 @@ html, body, #root {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
@font-face {
|
|
||||||
font-family: "Inter", sans-serif;
|
|
||||||
src: url("./assets/fonts/Inter.ttf") format("truetype-variations");
|
|
||||||
font-weight: 100 900;
|
|
||||||
}
|
|
Loading…
Reference in a new issue