Commit d339fb4e authored by FulcrandG's avatar FulcrandG
Browse files

Adding a div block to force the side by side

parent 90e1c292
Loading
Loading
Loading
Loading
+12 −10
Original line number Diff line number Diff line
@@ -10,16 +10,18 @@
- And more...
  {% endif %}

<a alt="See all issues" href="{{linked_issues_url}}">&nbsp;
    <button class="md-button border-radius-10 md-button-center" >&nbsp;
        See all issues <img alt="" class="heart" src="/images/rocket.png">&nbsp;
    </button>&nbsp;
</a>&nbsp;
<a alt="Add an issue" href="{{create_issue_url}}">&nbsp;
    <button class="md-button border-radius-10 md-button-center" >&nbsp;
        Add an issue <img alt="" class="heart" src="/images/rocket.png">&nbsp;
    </button>&nbsp;
</a>&nbsp;
<div>
  <a alt="See all issues" href="{{linked_issues_url}}">
      <button class="md-button border-radius-10 md-button-center" >
          See all issues <img alt="" class="heart" src="/images/rocket.png">
      </button>
  </a>
  <a alt="Add an issue" href="{{create_issue_url}}">
      <button class="md-button border-radius-10 md-button-center" >
          Add an issue <img alt="" class="heart" src="/images/rocket.png">
      </button>
  </a>
</div>
{% endif %}

---