Skip to content

Commit

Permalink
fix: Footer use same width as above tiles in mobile view (#5568)
Browse files Browse the repository at this point in the history
  • Loading branch information
sachinchauhan2889 authored Nov 11, 2020
1 parent 7e7b0f7 commit 1ee1b65
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions app/templates/components/footer-main.hbs
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<div class="ui grid">
<div class="three wide column"></div>
<div class="ten wide column">
<div class="ui {{if this.device.isMobile 'center aligned container' 'grid'}}">
{{#if (eq this.device.isMobile false)}}
<div class="three wide column"></div>
{{/if}}
<div class="{{if (eq this.device.isMobile false) 'ten wide column'}}">
<div class="ui stackable inverted divided grid">
<div class="four wide column">
<div class="ui left aligned container inverted link list">
Expand Down Expand Up @@ -126,5 +128,7 @@
</div>
</div>
</div>
<div class="three wide column"></div>
{{#if (eq this.device.isMobile false)}}
<div class="three wide column"></div>
{{/if}}
</div>

1 comment on commit 1ee1b65

@vercel
Copy link

@vercel vercel bot commented on 1ee1b65 Nov 11, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.