mirror of
https://github.com/remvze/moodist.git
synced 2026-03-07 20:43:13 +08:00
19 lines
308 B
CSS
19 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);
|
|
}
|
|
}
|