31 lines
565 B
CSS
31 lines
565 B
CSS
/* 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;
|
|
} |