diff options
author | Chocobozzz <me@florianbigard.com> | 2021-06-09 10:59:20 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-06-09 10:59:20 +0200 |
commit | 5d6395af72e01ba7c4393b485b7089bcb33e0155 (patch) | |
tree | 1f804edcb6bc43856a48081926b3d33d734db632 /client/src/sass | |
parent | 61cbafc1f80a33a895b54b15751a42e0d78af231 (diff) | |
download | PeerTube-5d6395af72e01ba7c4393b485b7089bcb33e0155.tar.gz PeerTube-5d6395af72e01ba7c4393b485b7089bcb33e0155.tar.zst PeerTube-5d6395af72e01ba7c4393b485b7089bcb33e0155.zip |
Add max rows to videos list
Diffstat (limited to 'client/src/sass')
-rw-r--r-- | client/src/sass/include/_miniature.scss | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/client/src/sass/include/_miniature.scss b/client/src/sass/include/_miniature.scss index f782d374a..0d3f2b6e0 100644 --- a/client/src/sass/include/_miniature.scss +++ b/client/src/sass/include/_miniature.scss | |||
@@ -118,8 +118,6 @@ | |||
118 | } | 118 | } |
119 | 119 | ||
120 | @mixin grid-videos-miniature-layout { | 120 | @mixin grid-videos-miniature-layout { |
121 | @include grid-videos-miniature-margins; | ||
122 | |||
123 | @media screen and (min-width: $mobile-view) { | 121 | @media screen and (min-width: $mobile-view) { |
124 | .videos, | 122 | .videos, |
125 | .playlists { | 123 | .playlists { |
@@ -156,3 +154,8 @@ | |||
156 | } | 154 | } |
157 | } | 155 | } |
158 | } | 156 | } |
157 | |||
158 | @mixin grid-videos-miniature-layout-with-margins { | ||
159 | @include grid-videos-miniature-margins; | ||
160 | @include grid-videos-miniature-layout; | ||
161 | } | ||