Merge pull request #1355 from nextcloud/apps_flexbox

Use flexbox on app page
This commit is contained in:
Morris Jobke 2016-10-26 10:28:02 +02:00 committed by GitHub
commit 363618249d
1 changed files with 11 additions and 1 deletions

View File

@ -435,12 +435,22 @@ span.version {
#apps-list { #apps-list {
position: relative; position: relative;
height: 100%; height: 100%;
display: flex;
flex-wrap: wrap;
align-content: flex-start;
} }
.section { #apps-list .section {
position: relative; position: relative;
flex: 1 0 330px;
margin: 0;
padding-right: 50px;
}
#apps-list .section.apps-experimental {
flex-basis: 90%;
} }
.section h2.app-name { .section h2.app-name {
margin-bottom: 8px; margin-bottom: 8px;
display: inline;
} }
.followupsection { .followupsection {
display: block; display: block;