16 lines
276 B
SCSS
16 lines
276 B
SCSS
|
.wrapper{
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
text-align: center;
|
||
|
align-items: center;
|
||
|
height: 80vh;
|
||
|
}
|
||
|
|
||
|
.transfer{
|
||
|
display: flex;
|
||
|
width: 80%;
|
||
|
height: 70%;
|
||
|
background-color: purple;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
}
|