moodist/src/components/gradient/gradient.module.css
2023-11-05 15:22:52 +03:30

18 lines
308 B
CSS

.gradient {
position: relative;
width: 100%;
height: 5px;
background: linear-gradient(90deg, #fcb0f3, #5b27ec);
&::before {
position: absolute;
z-index: -1;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: inherit;
content: '';
filter: blur(10px);
}
}