Skip to content

Commit 748dec1

Browse files
authored
fix(styles): fix regressions in operations on smaller screens (#9425)
Refs #8940
1 parent f308eb3 commit 748dec1

File tree

1 file changed

+9
-10
lines changed

1 file changed

+9
-10
lines changed

src/style/_layout.scss

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -342,13 +342,12 @@
342342

343343
.opblock-summary-path
344344
{
345-
flex-shrink: 0;
345+
flex-shrink: 1;
346346
}
347347

348348
@media (max-width: 640px) {
349349
.opblock-summary-path
350350
{
351-
flex-shrink: 1;
352351
max-width: 100%;
353352
}
354353
}
@@ -375,6 +374,7 @@
375374
.opblock-summary-path-description-wrapper
376375
{
377376
display: flex;
377+
flex-direction: row;
378378
align-items: center;
379379
flex-wrap: wrap;
380380
gap: 0px 10px;
@@ -385,11 +385,10 @@
385385
}
386386

387387
@media (max-width: 550px) {
388-
.opblock-summary-path-description-wrapper
389-
{
390-
flex-direction: column;
391-
align-items: start;
392-
}
388+
.opblock-summary-path-description-wrapper {
389+
flex-direction: column;
390+
align-items: flex-start;
391+
}
393392
}
394393

395394
.opblock-summary
@@ -837,16 +836,16 @@
837836
justify-content: flex-end;
838837
}
839838

840-
/*
839+
/*
841840
Target Authorize Button in schemes wrapper
842841
This was added here to fix responsiveness issues with the authorize button
843842
within the schemes wrapper without affecting other instances of it's usage
844843
*/
845-
.auth-wrapper
844+
.auth-wrapper
846845
{
847846
flex: none;
848847
justify-content: none;
849-
848+
850849
.authorize
851850
{
852851
padding-right: 20px;

0 commit comments

Comments
 (0)