Fixing dapps sorting (#3086)

* Fixing dapps sorting (#3076)

* PR Grumble

* PR Grumble #2
This commit is contained in:
Nicolas Gotchac 2016-11-02 12:58:03 +01:00 committed by Jaco Greeff
parent feffe59fd4
commit ed89e1efab
2 changed files with 7 additions and 5 deletions

View File

@ -17,6 +17,7 @@
.container {
position: relative;
height: 100%;
}
.image {

View File

@ -15,8 +15,9 @@
/* along with Parity. If not, see <http://www.gnu.org/licenses/>.
*/
.list {
column-count: 2;
column-gap: 0.25em;
display: flex;
flex-wrap: wrap;
margin: -0.125em;
}
.list+.list {
@ -24,7 +25,7 @@
}
.item {
display: inline-block;
margin: 0 0 0.25em;
width: 100%;
padding: 0.125em;
flex: 0 1 50%;
box-sizing: border-box;
}