Skip to content
Snippets Groups Projects
Commit 9524d699 authored by Chris Lawton's avatar Chris Lawton
Browse files

styling submissions page meta

parent 60751f33
No related branches found
No related tags found
No related merge requests found
...@@ -3,8 +3,13 @@ ...@@ -3,8 +3,13 @@
{% block content %} {% block content %}
<div class="wrapper wrapper--breakout wrapper--admin"> <div class="wrapper wrapper--breakout wrapper--admin">
<div class="wrapper wrapper--medium"> <div class="wrapper wrapper--medium">
<h5>{{ object.stage }} | {{ object.page }} | {{ object.round }} | Lead: {{ object.round.specific.lead }}</h5>
<h2 class="heading heading--no-margin">{{ object.title }}</h2> <h2 class="heading heading--no-margin">{{ object.title }}</h2>
<h5 class="heading heading--meta">
<span>{{ object.stage }}</span>
<span>{{ object.page }}</span>
<span>{{ object.round }}</span>
<span>Lead: {{ object.round.specific.lead }}</span>
</h5>
</div> </div>
{% include "funds/includes/status_bar.html" with workflow=object.workflow status=object.status %} {% include "funds/includes/status_bar.html" with workflow=object.workflow status=object.status %}
......
.heading {
&--no-margin {
margin: 0;
}
&--meta {
display: flex;
flex-wrap: wrap;
span {
&::after {
padding: 0 15px;
content: '|';
}
&:last-child {
&::after {
content: '';
}
}
}
}
}
...@@ -11,6 +11,7 @@ ...@@ -11,6 +11,7 @@
// Components // Components
@import 'components/button'; @import 'components/button';
@import 'components/heading';
@import 'components/icon'; @import 'components/icon';
@import 'components/wrapper'; @import 'components/wrapper';
......
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