14 lines
322 B
SCSS
14 lines
322 B
SCSS
.custom-background {
|
|
background-image: linear-gradient(
|
|
173deg,
|
|
rgb(177, 221, 250) 0,
|
|
rgb(177, 221, 250) 13%,
|
|
rgba(255, 255, 255, 1) 80%,
|
|
rgba(255, 255, 255, 1) 100%
|
|
);
|
|
background-position: 50% 50%;
|
|
background-origin: padding-box;
|
|
background-clip: border-box;
|
|
background-size: auto auto;
|
|
}
|