Skip to content
This repository has been archived by the owner on Nov 6, 2020. It is now read-only.

Fixing dapps sorting #3086

Merged
merged 3 commits into from
Nov 2, 2016
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
1 change: 1 addition & 0 deletions js/src/views/Dapps/Summary/summary.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@

.container {
position: relative;
height: 100%;
}

.image {
Expand Down
8 changes: 4 additions & 4 deletions js/src/views/Dapps/dapps.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
/* along with Parity. If not, see <http://www.gnu.org/licenses/>.
*/
.list {
column-count: 2;
column-gap: 0.25em;
display: flex;
flex-wrap: wrap;
}

.list+.list {
Expand All @@ -25,6 +25,6 @@

.item {
display: inline-block;
margin: 0 0 0.25em;
width: 100%;
margin: 0.25%;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We have the margins at 0.25em on the accounts list, would like to keep consistency throughout

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Okay, fixed (nb: 0.125em but for each which makes 0.25em for a two column layout)

flex: 0 1 49.5%;
}