feat: stabilization + recipe edit/create UI
This commit is contained in:
32
frontend/src/styles/globals.css
Normal file
32
frontend/src/styles/globals.css
Normal file
@@ -0,0 +1,32 @@
|
||||
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');
|
||||
@import "tailwindcss";
|
||||
|
||||
@theme {
|
||||
--color-primary: #C4737E;
|
||||
--color-primary-light: #F2D7DB;
|
||||
--color-secondary: #D4A574;
|
||||
--color-cream: #FBF8F5;
|
||||
--color-surface: #FFFFFF;
|
||||
--color-espresso: #2D2016;
|
||||
--color-warm-grey: #7A6E65;
|
||||
--color-sage: #7BAE7F;
|
||||
--color-berry: #C94C4C;
|
||||
--color-sand: #E8E0D8;
|
||||
--font-display: 'Playfair Display', serif;
|
||||
--font-sans: 'Inter', system-ui, sans-serif;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: var(--font-sans);
|
||||
background-color: #FBF8F5;
|
||||
color: #2D2016;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
}
|
||||
|
||||
.scrollbar-hide::-webkit-scrollbar {
|
||||
display: none;
|
||||
}
|
||||
.scrollbar-hide {
|
||||
-ms-overflow-style: none;
|
||||
scrollbar-width: none;
|
||||
}
|
||||
Reference in New Issue
Block a user