15 lines
204 B
CSS
15 lines
204 B
CSS
.settings {
|
|
display: flex;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.settings-content {
|
|
display: flex;
|
|
height: 100%;
|
|
width: 100%;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|