mirror of
https://github.com/sigmasternchen/MyTube
synced 2025-03-15 04:48:55 +00:00
add button for user list
This commit is contained in:
parent
2f27705f02
commit
10177c4e9a
3 changed files with 24 additions and 1 deletions
|
@ -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;
|
||||
}
|
|
@ -22,4 +22,8 @@
|
|||
/*top: calc(100% + 0.40rem);
|
||||
right: -0.75rem;*/
|
||||
left: auto !important;
|
||||
}
|
||||
|
||||
.container {
|
||||
position: relative;
|
||||
}
|
|
@ -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 %}
|
Loading…
Reference in a new issue