add button for user list

This commit is contained in:
overflowerror 2021-01-08 13:37:45 +01:00
parent 2f27705f02
commit 10177c4e9a
3 changed files with 24 additions and 1 deletions

View file

@ -7,4 +7,18 @@
border-radius: 0.75vw;
font-weight: bold;
color: lightgrey;
}
.addButton {
position: absolute;
right: 2%;
top: calc(90vh - 3vw);
width: 3vw;
}
.addButton button {
position: fixed;
height: 3vw;
width: 3vw;
font-size: 1.4vw;
}

View file

@ -22,4 +22,8 @@
/*top: calc(100% + 0.40rem);
right: -0.75rem;*/
left: auto !important;
}
.container {
position: relative;
}

View file

@ -6,7 +6,7 @@
{% endblock %}
{% block body %}
<div class="links bg-light shadow-5">
<div class="users bg-light shadow-5">
<table class="table">
<tr>
<th>
@ -51,4 +51,9 @@
{% endfor %}
</table>
</div>
<div class="addButton">
<button type="button" class="btn btn-primary btn-floating">
<i class="fas fa-plus"></i>
</button>
</div>
{% endblock %}