Skip to content

Commit

Permalink
Merge pull request #4046 from LiskHQ/4009-responsiveness-issues-220
Browse files Browse the repository at this point in the history
Fix responsiveness issues in 2.2.0-beta.1 - Closes #4009
  • Loading branch information
reyraa authored Jan 10, 2022
2 parents 52ace16 + 85a445a commit 9ffa60d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/screens/monitor/delegates/delegates.css
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,9 @@

& .delegatesList {
display: flex;
width: calc(100% - 20px);
word-break: break-word;
flex-wrap: wrap;
justify-content: flex-end;

& span {
display: inline;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import grid from 'flexboxgrid/dist/flexboxgrid.css';
import gridVisibility from 'flexboxgrid-helpers/dist/flexboxgrid-helpers.min.css';
import styles from '../delegates.css';

export default t => ([
{
Expand All @@ -17,6 +16,6 @@ export default t => ([
},
{
title: t('Votes'),
classList: `${grid['col-xs-5']} ${grid['col-lg-3']} ${styles.votesColumnTitle}`,
classList: `${grid['col-xs-5']} ${grid['col-lg-3']}`,
},
]);
6 changes: 6 additions & 0 deletions src/components/toolbox/dropdownButton/dropdownButton.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,9 @@
top: calc(100% + 10px);
}
}

@media (--small-viewport) {
.dropdown {
max-width: 670px;
}
}

0 comments on commit 9ffa60d

Please sign in to comment.