21 lines
351 B
CSS
21 lines
351 B
CSS
.container {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.button {
|
|
background: linear-gradient(
|
|
165.54deg,
|
|
rgb(20, 19, 51) -33.39%,
|
|
rgb(32, 34, 97) 15.89%,
|
|
rgb(84, 60, 151) 55.84%,
|
|
rgb(105, 57, 162) 74.96%
|
|
);
|
|
min-height: 0;
|
|
height: 49px;
|
|
border-radius: 12px;
|
|
margin-top: 26px;
|
|
}
|