mirror of
https://github.com/sussy-code/smov.git
synced 2024-12-24 15:17:41 +01:00
17 lines
279 B
CSS
17 lines
279 B
CSS
|
.cardView {
|
||
|
display: flex;
|
||
|
min-height: 100vh;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
flex-direction: column;
|
||
|
padding: 1rem;
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
|
||
|
.cardView > div {
|
||
|
margin-top: 2rem;
|
||
|
}
|
||
|
|
||
|
.cardView > div:first-child {
|
||
|
margin-top: 0;
|
||
|
}
|