diff options
| author | Omar Roth <omarroth@hotmail.com> | 2018-08-06 13:48:02 -0500 |
|---|---|---|
| committer | Omar Roth <omarroth@hotmail.com> | 2018-08-06 13:48:02 -0500 |
| commit | f121e74d3394d523fea5e77d23bf48be3a1ba821 (patch) | |
| tree | 7b8232d8912dbdba1536224e1e43ccef27341a91 /src | |
| parent | fe5142753ca89753135fd8122230c0cd1ff8950e (diff) | |
| download | invidious-f121e74d3394d523fea5e77d23bf48be3a1ba821.tar.gz invidious-f121e74d3394d523fea5e77d23bf48be3a1ba821.tar.bz2 invidious-f121e74d3394d523fea5e77d23bf48be3a1ba821.zip | |
Fix rendering of notifications
Diffstat (limited to 'src')
| -rw-r--r-- | src/invidious/views/subscriptions.ecr | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/invidious/views/subscriptions.ecr b/src/invidious/views/subscriptions.ecr index bc782e84..e1a1cc54 100644 --- a/src/invidious/views/subscriptions.ecr +++ b/src/invidious/views/subscriptions.ecr @@ -15,15 +15,15 @@ </div> </div> -<div class="h-box"> - <center><%= notifications.size %> unseen notifications</center> - <% notifications.each_slice(4) do |slice| %> - <% slice.each do |video| %> - <%= rendered "components/video" %> - <% end %> - <% end %> - <hr> -</div> +<center><%= notifications.size %> unseen notifications</center> +<% notifications.each_slice(4) do |slice| %> + <div class="pure-g"> + <% slice.each do |video| %> + <%= rendered "components/video" %> + <% end %> + </div> +<% end %> +<hr> <% videos.each_slice(4) do |slice| %> <div class="pure-g"> |
