9 lines
152 B
CSS
9 lines
152 B
CSS
.center {
|
|
display: flex;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
justify-content: center;
|
|
align-items: center;
|
|
position: relative;
|
|
padding: 4rem 0;
|
|
} |