Copy Code
If Code is not visible please click on HIGHLIGHT area
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800&display=swap" rel="stylesheet">
Copy Code
If Code is not visible please click on HIGHLIGHT area
xxxxxxxxxx
1
.body {
2
width: 100%;
3
min-height: 100vh;
4
display: flex;
5
align-items: center;
6
justify-content: center;
7
background-color: #FBAB7E;
8
background-image: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%);
9
}
10
11
.contianer {
12
background-color: #fff;
13
padding: 25px;
14
padding-bottom: 30px;
15
border-radius: 20px;
16
overflow: hidden;
17
position: relative;
18
}
19
20
.choose-color {
21
display: flex;
22
align-content: center;
Copy Code
If Code is not visible please click on HIGHLIGHT area
18
let shadow = `${horizontal} ${vertical} ${blurShadow} ${spread} ${shadowColor} ${inset ? "inset" : ""}`;