The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/client/components/setupWizard/SetupWizardPage.css

37 lines
482 B

.SetupWizard {
display: flex;
width: 100%;
min-height: 100vh;
background-color: var(--color-dark-05);
align-items: stretch;
justify-content: center;
&__wrapper {
display: flex;
flex: 1 1 auto;
height: 100vh;
flex-flow: column nowrap;
}
&__steps {
flex: 1 1 auto;
justify-content: center;
}
}
@media (width <= 760px) {
.SetupWizard {
flex-direction: column;
min-height: 100vh;
justify-content: stretch;
&__wrapper {
min-height: 0;
}
}
}