Optymalizacja Css

This commit is contained in:
dm
2025-12-19 12:18:20 +01:00
parent 9027ade4ad
commit f390eed402
15 changed files with 83 additions and 136 deletions

31
src/styles/global.css Normal file
View 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;
}