Optymalizacja Css
This commit is contained in:
31
src/styles/global.css
Normal file
31
src/styles/global.css
Normal file
@@ -0,0 +1,31 @@
|
||||
/* src/styles/global.css */
|
||||
@tailwind base;
|
||||
@tailwind components;
|
||||
@tailwind utilities;
|
||||
|
||||
/* bazowe rzeczy, które masz w base.css */
|
||||
@layer base {
|
||||
html {
|
||||
font-family: 'Nunito', sans-serif;
|
||||
font-optical-sizing: auto;
|
||||
font-weight: 500;
|
||||
scroll-behavior: smooth;
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: var(--f-background);
|
||||
color: var(--f-text);
|
||||
}
|
||||
|
||||
a {
|
||||
@apply text-[--f-link-text];
|
||||
}
|
||||
|
||||
a:hover {
|
||||
@apply text-[--f-link-text-hover];
|
||||
}
|
||||
}
|
||||
|
||||
.grecaptcha-badge {
|
||||
display: none !important;
|
||||
}
|
||||
Reference in New Issue
Block a user