0
Fork 0
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:
Peter Zimon 2023-05-17 08:11:02 +02:00
parent 116408e64d
commit d8677b4f39
2 changed files with 3 additions and 8 deletions

View file

@ -67,6 +67,7 @@
"eslint-plugin-react-refresh": "0.3.4",
"eslint-plugin-tailwindcss": "3.11.0",
"postcss": "8.4.23",
"postcss-import": "^15.1.0",
"prop-types": "15.8.1",
"rollup-plugin-node-builtins": "2.1.2",
"storybook": "7.0.9",

View file

@ -8,12 +8,12 @@
@layer base {
@font-face {
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;
}
body {
@apply text-black text-base leading-normal;
@apply font-sans text-black text-base leading-normal;
}
h1, h2, h3, h4, h5, h6 {
@ -60,10 +60,4 @@
html, body, #root {
width: 100%;
height: 100%;
}
@font-face {
font-family: "Inter", sans-serif;
src: url("./assets/fonts/Inter.ttf") format("truetype-variations");
font-weight: 100 900;
}