TelegramPWA/src/components/common/profile/RadialPatternBackground.module.scss
2025-01-05 20:18:43 +01:00

19 lines
325 B
SCSS

.root {
border-radius: inherit;
overflow: hidden;
&::before {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(var(--_bg-1), var(--_bg-2)), radial-gradient(circle, #ffffff32, #ffffff00);
}
}
.canvas {
width: 100%;
height: 100%;
object-fit: cover;
position: relative;
}