31 lines
479 B
CSS
31 lines
479 B
CSS
.container {
|
|
margin-top: 30px;
|
|
width: 100%;
|
|
}
|
|
|
|
.title {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.winContainer {
|
|
padding-bottom: 16px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 12px;
|
|
border-bottom: 1px solid var(--grey6C);
|
|
}
|
|
|
|
.otherContainer {
|
|
padding-top: 16px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
}
|
|
|
|
.spinnerContainer {
|
|
display: flex;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
align-items: center;
|
|
justify-content: center;
|
|
} |