Skip to content

Commit

Permalink
πŸ’‡β€β™€οΈ Fix third-party login responsiveness
Browse files Browse the repository at this point in the history
  • Loading branch information
ohansFavour committed May 26, 2024
1 parent 7696da8 commit 1929b8c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
gap: 10px;
}

@media screen and (max-width: 480px) {
@media screen and (max-width: 768px) {
flex-direction: column;
gap: 10px;
padding-bottom: 10px;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@
flex-direction: column;
gap: 15px;

@media screen and (max-width: 480px) {
@media screen and (max-width: 768px) {
gap: 0px;
}

Expand All @@ -180,7 +180,7 @@
gap: 10px;
align-items: center;

@media screen and (max-width: 480px) {
@media screen and (max-width: 768px) {
align-items: flex-end;

.delete-cross-button {
Expand All @@ -191,7 +191,7 @@

&__footer {
margin-left: 128px;
@media screen and (max-width: 480px) {
@media screen and (max-width: 768px) {
margin-left: 0px;
margin-top: 18px;
}
Expand Down Expand Up @@ -416,7 +416,7 @@
.provider-email-select {
display: flex;
gap: 75px;
@media screen and (max-width: 480px) {
@media screen and (max-width: 768px) {
flex-direction: column;
gap: 10px;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
width: 100%;
gap: 20px;

@media screen and (max-width: 480px) {
@media screen and (max-width: 768px) {
flex-direction: column;
gap: 12px;
}
Expand All @@ -30,7 +30,7 @@
color: var(--color-secondary-text);
min-width: max-content;

@media screen and (max-width: 480px) {
@media screen and (max-width: 768px) {
min-width: unset;
}
}
Expand Down

0 comments on commit 1929b8c

Please sign in to comment.