Create ConnectDevicePage.module.css

This commit is contained in:
Hristo Nedelkov 2023-12-15 12:23:40 +02:00
parent 1113079e27
commit 569859f5f6
1 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,23 @@
.responsiveXStack {
width: 100%;
align-items: center;
justify-content: space-between;
}
.responsiveInput {
width: 40%;
}
@media (max-width: 768px) {
.responsiveXStack {
flex-direction: column;
align-items: center;
}
.responsiveInput {
width: 100%;
margin-bottom: 1rem;
}
}