diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-02-14 15:55:00 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-02-14 15:55:00 -0500 |
commit | 30fefe4fa9ab3f04f8344f00556f4f2f2c5ec563 (patch) | |
tree | 76a7aa555210fd635466b6e2ee287d7d76648755 /assets/css/src | |
parent | 8477da26437cd927b47fbac8874e2a7e02b580ca (diff) |
Change alignement of thumbnails
Diffstat (limited to 'assets/css/src')
-rw-r--r-- | assets/css/src/files.css | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/assets/css/src/files.css b/assets/css/src/files.css index af87d8d2..d21a5e08 100644 --- a/assets/css/src/files.css +++ b/assets/css/src/files.css @@ -3,10 +3,10 @@ display: flex; -webkit-flex-direction: row; flex-direction: row; - -webkit-justify-content: space-between; - justify-content: space-between; -webkit-flex-wrap: wrap; flex-wrap: wrap; + -webkit-justify-content: flex-start; + justify-content: flex-start; } .file-thumbnail { @@ -15,6 +15,7 @@ border-radius: 5px; margin-bottom: 20px; box-shadow: 2px 2px 5px -2px rgba(0, 0, 0, 0.55); + margin-right: 15px; } .file-thumbnail img { |