Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

fix(styles): fix regressions in operations on smaller screens #9425

Merged
merged 3 commits into from
Dec 14, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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