diff --git a/app/components/proposal-list/template.hbs b/app/components/proposal-list/template.hbs
index d981cdc..81fdec2 100644
--- a/app/components/proposal-list/template.hbs
+++ b/app/components/proposal-list/template.hbs
@@ -3,5 +3,7 @@
Issue{{#if proposal.executed}}d{{/if}}
{{proposal.amount}}₭S
to {{proposal.recipientName}}
+
+
{{/each}}
diff --git a/app/styles/components/_proposal-list.scss b/app/styles/components/_proposal-list.scss
index 7c8d1a0..298b494 100644
--- a/app/styles/components/_proposal-list.scss
+++ b/app/styles/components/_proposal-list.scss
@@ -25,6 +25,26 @@ ul.proposal-list {
.recipient {
font-weight: 500;
}
+
+ button {
+ display: inline-block;
+ float: right;
+ height: 2rem;
+ line-height: 2rem;
+ margin-top: 1.1rem;
+ padding: 0 0.6rem;
+ border: 1px solid rgba(22, 21, 40, 1);
+ background-color: rgba(22, 21, 40, 0.6);
+ color: lightblue;
+ border-radius: 3px;
+ font-weight: 500;
+ text-transform: uppercase;
+ cursor: pointer;
+
+ &:hover {
+ background-color: rgba(22, 21, 40, 0.8);
+ }
+ }
}
}