Skip to content

Commit

Permalink
improvement responsive spa
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasferreiralimax committed Oct 21, 2024
1 parent 87e2890 commit a34caa2
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions src/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,15 @@ h2 {
.language {
width: 50%;
}

@media (max-width: 620px) {
flex-direction: column;
.button-voicecapture-example,
.language {
width: 100%;
margin-top: 0;
}
}
}

.content-title {
Expand Down Expand Up @@ -189,6 +198,9 @@ h2 {

.install {
display: flex;
@media (max-width: 620px) {
flex-direction: column;
}
}

.examples {
Expand All @@ -203,3 +215,16 @@ h2 {
justify-content: center;
align-items: center;
}


@media (max-width: 620px) {
.button-modal {
margin-left: 0;
margin-top: 1rem;
}

.button-modal,
.button-voicecapture-example {
justify-content: start;
}
}

0 comments on commit a34caa2

Please sign in to comment.