summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOmar Roth <omarroth@hotmail.com>2018-05-31 09:52:54 -0500
committerOmar Roth <omarroth@hotmail.com>2018-05-31 09:52:54 -0500
commitcbe10784aada0606167686fafdfdad2a89ae4bed (patch)
tree9fe78ad153b66b6010778905d66cc4f1e12eae86
parenta405188af68e9eb9dca4b77704d5b86856fcdef1 (diff)
downloadinvidious-cbe10784aada0606167686fafdfdad2a89ae4bed.tar.gz
invidious-cbe10784aada0606167686fafdfdad2a89ae4bed.tar.bz2
invidious-cbe10784aada0606167686fafdfdad2a89ae4bed.zip
Fix notifications layout on mobile
-rw-r--r--src/views/layout.ecr4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/views/layout.ecr b/src/views/layout.ecr
index 22abd4c5..11ea7b48 100644
--- a/src/views/layout.ecr
+++ b/src/views/layout.ecr
@@ -34,7 +34,7 @@
<div class="pure-u-1 pure-u-md-1-5">
<% if env.get? "authorized" %>
<div class="pure-g">
- <div class="pure-u-1 pure-u-md-1-3">
+ <div class="pure-u-1-3">
<a href="/feed/subscriptions" class="pure-menu-heading">
<% notifications = env.get("notifications").as(Int32) %>
<% if notifications > 0 %>
@@ -44,7 +44,7 @@
<% end %>
</a>
</div>
- <div class="pure-u-1 pure-u-md-2-3">
+ <div class="pure-u-2-3">
<center><a href="/signout" class="pure-menu-heading">Sign out</a></center>
</div>
</div>