Skip to content

Commit

Permalink
fix(styles): fix regressions in operations on smaller screens (#9425)
Browse files Browse the repository at this point in the history
Refs #8940
  • Loading branch information
char0n authored Dec 14, 2023
1 parent f308eb3 commit 748dec1
Showing 1 changed file with 9 additions and 10 deletions.
19 changes: 9 additions & 10 deletions src/style/_layout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -342,13 +342,12 @@

.opblock-summary-path
{
flex-shrink: 0;
flex-shrink: 1;
}

@media (max-width: 640px) {
.opblock-summary-path
{
flex-shrink: 1;
max-width: 100%;
}
}
Expand All @@ -375,6 +374,7 @@
.opblock-summary-path-description-wrapper
{
display: flex;
flex-direction: row;
align-items: center;
flex-wrap: wrap;
gap: 0px 10px;
Expand All @@ -385,11 +385,10 @@
}

@media (max-width: 550px) {
.opblock-summary-path-description-wrapper
{
flex-direction: column;
align-items: start;
}
.opblock-summary-path-description-wrapper {
flex-direction: column;
align-items: flex-start;
}
}

.opblock-summary
Expand Down Expand Up @@ -837,16 +836,16 @@
justify-content: flex-end;
}

/*
/*
Target Authorize Button in schemes wrapper
This was added here to fix responsiveness issues with the authorize button
within the schemes wrapper without affecting other instances of it's usage
*/
.auth-wrapper
.auth-wrapper
{
flex: none;
justify-content: none;

.authorize
{
padding-right: 20px;
Expand Down

0 comments on commit 748dec1

Please # to comment.