Update globals.scss

This commit is contained in:
skidoodle 2022-08-14 21:24:33 +02:00 committed by GitHub
parent 50a12a58ad
commit 4aa69c44db
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,5 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
html {
@ -12,10 +11,6 @@
background-color: #000;
color: #fff;
}
ul, ol {
list-style: revert;
}
}
@layer components {
@ -33,24 +28,3 @@
border-radius: 10px;
}
}
@layer utilities {
.gradient {
color: transparent;
background-clip: text;
background-image: linear-gradient(to right, #800a18, #a82044, #9e4a60);
animation: gradient 5s ease infinite
}
@keyframes gradient {
0%, 100% {
background-size: 200%;
background-position: left center;
}
50% {
background-size: 200%;
background-position: right center;
}
}
}