11-03-2024
5,166
218
289
gradients or animation background images
go to your admin panel then add the following code to your extra.less
go to your admin panel then add the following code to your extra.less
CSS:
body {
width: 100%;
height: 100%;
background: linear-gradient(0deg, #66FFC4 50%, #73FFFF 52%, #8CB1FF 56%);
background-size: 200% 200%;
animation: ani_gradient 3.6s ease infinite;
}
@keyframes ani_gradient {
0% {
background-position: 0% 0%;
}
50% {
background-position: 100% 100%;
}
100% {
background-position: 0% 0%;
}
}


