23 lines
304 B
CSS
Executable File
23 lines
304 B
CSS
Executable File
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
.wrapper {
|
|
max-width: 100%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.marquee {
|
|
animation: marquee 40s linear infinite;
|
|
}
|
|
|
|
@keyframes marquee {
|
|
0% {
|
|
transform: translate3d(100%, 0, 0);
|
|
}
|
|
100% {
|
|
transform: translate3d(-100%, 0, 0);
|
|
}
|
|
}
|
|
|
|
|