17 lines
308 B
SCSS
17 lines
308 B
SCSS
main {
|
|
height: 100vh;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
.card {
|
|
width: 20vw;
|
|
height: 50vh;
|
|
padding: 3em;
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: space-around;
|
|
}
|
|
} |