17 lines
248 B
CSS
17 lines
248 B
CSS
|
|
@tailwind base;
|
||
|
|
@tailwind components;
|
||
|
|
@tailwind utilities;
|
||
|
|
|
||
|
|
.text-shadow {
|
||
|
|
text-shadow: 1px 1px 3px #000000e0;
|
||
|
|
}
|
||
|
|
|
||
|
|
html {
|
||
|
|
scroll-behavior: smooth
|
||
|
|
}
|
||
|
|
|
||
|
|
@media screen and (prefers-reduced-motion: reduce) {
|
||
|
|
html {
|
||
|
|
scroll-behavior: auto;
|
||
|
|
}
|
||
|
|
}
|