Skip to content

Commit

Permalink
Change to grid
Browse files Browse the repository at this point in the history
  • Loading branch information
Septdir committed Feb 3, 2018
1 parent f1dbb0f commit 8f10990
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions chrome/userContent.css
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,18 @@
display: none !important;
}
.top-sites-list {
display: flex;
flex-wrap: wrap;
display: grid !important;
grid-gap: 24px !important;
grid-template-columns: repeat(auto-fit, 128px) !important;
margin: 0 !important;
padding: 0 !important;
list-style: none;
}
.top-sites-list .top-site-outer {
width: 11.1% !important;
margin: 0 !important;
width: 128px !important;
box-sizing: border-box !important;
padding: 0 !important;
margin: 0 !important;
}
.top-sites-list .top-site-outer .tile {
width: 128px !important;
Expand Down Expand Up @@ -115,4 +120,8 @@
.top-sites-list a[href*="joomlazen.com"] .screenshot {
background-image: url('images/topsites/joomlazen.com.png') !important;
}

.sections-list .section-list {
grid-gap: 57px !important;
}
}

0 comments on commit 8f10990

Please sign in to comment.