Files
medusa-store/packages/admin-next/dashboard/src/index.css
Kasper Fabricius Kristensen 51acd1da5b fix(dashboard): Minor cleanup and improve text legibility (#7045)
**What**
- Cleans up some artifacts from the V1 -> V2 migrations.
- Removes the MedusaProvider from the root in favor of a plain QueryClient.
- Applies font styles to make the text in admin resemble designs in Figma more closely.
2024-04-11 08:44:13 +00:00

49 lines
1.0 KiB
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
@font-face {
font-family: "Inter";
font-weight: 400;
src: url("./assets/fonts/Inter-Regular.ttf") format("truetype");
}
@font-face {
font-family: "Inter";
font-weight: 500;
src: url("./assets/fonts/Inter-Medium.ttf") format("truetype");
}
@font-face {
font-family: "Roboto Mono";
font-weight: 400;
src: url("./assets/fonts/RobotoMono-Regular.ttf") format("truetype");
}
@font-face {
font-family: "Roboto Mono";
font-weight: 500;
src: url("./assets/fonts/RobotoMono-Medium.ttf") format("truetype");
}
:root {
@apply bg-ui-bg-subtle text-ui-fg-base antialiased;
text-rendering: optimizeLegibility;
}
}
@layer components {
.worfklow-grid {
background-image: radial-gradient(black 1px, transparent 0);
background-size: 40px 40px;
background: repeat;
}
}
.worfklow-grid {
background-image: radial-gradient(black 1px, transparent 0);
background-size: 40px 40px;
background: repeat;
}