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 {
position: relative;
height: 100%;
display: flex;
flex-wrap: wrap;
align-content: flex-start;
}
.section {
#apps-list .section {
position: relative;
flex: 1 0 330px;
margin: 0;
padding-right: 50px;
}
#apps-list .section.apps-experimental {
flex-basis: 90%;
}
.section h2.app-name {
margin-bottom: 8px;
display: inline;
}
.followupsection {
display: block;