Fix notifications layout on mobile

This commit is contained in:
Omar Roth 2018-05-31 09:52:54 -05:00
parent a405188af6
commit cbe10784aa
1 changed files with 2 additions and 2 deletions

View File

@ -34,7 +34,7 @@
<div class="pure-u-1 pure-u-md-1-5"> <div class="pure-u-1 pure-u-md-1-5">
<% if env.get? "authorized" %> <% if env.get? "authorized" %>
<div class="pure-g"> <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"> <a href="/feed/subscriptions" class="pure-menu-heading">
<% notifications = env.get("notifications").as(Int32) %> <% notifications = env.get("notifications").as(Int32) %>
<% if notifications > 0 %> <% if notifications > 0 %>
@ -44,7 +44,7 @@
<% end %> <% end %>
</a> </a>
</div> </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> <center><a href="/signout" class="pure-menu-heading">Sign out</a></center>
</div> </div>
</div> </div>