Skip to content
Snippets Groups Projects
Commit 0fd80c4e authored by Chris Lawton's avatar Chris Lawton Committed by Todd Dembrey
Browse files

adding wrapper around each status bar

parent 2a4eb285
No related branches found
No related tags found
No related merge requests found
......@@ -21,7 +21,7 @@
<div class="wrapper wrapper--large wrapper--inner-space-medium">
<h3>Your active submissions</h3>
{% for submission in my_active_submissions %}
<div>
<div class="wrapper wrapper--status-bar">
<a href="{% url 'funds:submission' submission.id %}">{{ submission.title }}</a>
{% include "funds/includes/status_bar.html" with workflow=submission.workflow status=submission.phase class="status-bar--small" %}
</div>
......
......@@ -249,4 +249,17 @@
padding: 20px;
}
}
&--status-bar {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding: 20px;
background-color: $color--white;
border-bottom: 3px solid $color--light-grey;
div:first-child {
padding-right: 20px;
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment