Style save button and add new member link

This commit is contained in:
Montana 2019-03-26 10:18:29 -04:00
parent 5312a11e16
commit 6f25d27fb4
3 changed files with 19 additions and 5 deletions

View File

@ -0,0 +1 @@
<svg aria-hidden="true" focusable="false" data-prefix="fas" data-icon="plus-circle" class="svg-inline--fa fa-plus-circle fa-w-16" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="currentColor" d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm144 276c0 6.6-5.4 12-12 12h-92v92c0 6.6-5.4 12-12 12h-56c-6.6 0-12-5.4-12-12v-92h-92c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h92v-92c0-6.6 5.4-12 12-12h56c6.6 0 12 5.4 12 12v92h92c6.6 0 12 5.4 12 12v56z"></path></svg>

After

Width:  |  Height:  |  Size: 516 B

View File

@ -283,6 +283,17 @@
float: right;
}
}
input.usa-button.usa-button-primary {
margin: 0;
width: 9rem;
height: 4rem;
}
.members-table-footer {
float: right;
padding: 3 * $gap;
}
}
.application-content {

View File

@ -61,11 +61,13 @@
</tbody>
</table>
<a class='icon-link'>
{{ "portfolios.admin.add_member" | translate }}
<span class='icon'>{{ Icon('plus') }}</span>
</a>
<input type='submit' class='usa-button usa-button-primary' value='{{ "Save" }}' />
<div class="members-table-footer">
<a class='icon-link'>
{{ "portfolios.admin.add_member" | translate }}
{{ Icon('plus-circle-solid') }}
</a>
<input type='submit' class='usa-button usa-button-primary' value='{{ "Save" }}' />
</div>
</form>
</div>