mirror of
https://github.com/sigmasternchen/MyTube
synced 2025-03-15 21:08: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;
|
border-radius: 0.75vw;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: lightgrey;
|
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);
|
/*top: calc(100% + 0.40rem);
|
||||||
right: -0.75rem;*/
|
right: -0.75rem;*/
|
||||||
left: auto !important;
|
left: auto !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container {
|
||||||
|
position: relative;
|
||||||
}
|
}
|
|
@ -6,7 +6,7 @@
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block body %}
|
{% block body %}
|
||||||
<div class="links bg-light shadow-5">
|
<div class="users bg-light shadow-5">
|
||||||
<table class="table">
|
<table class="table">
|
||||||
<tr>
|
<tr>
|
||||||
<th>
|
<th>
|
||||||
|
@ -51,4 +51,9 @@
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="addButton">
|
||||||
|
<button type="button" class="btn btn-primary btn-floating">
|
||||||
|
<i class="fas fa-plus"></i>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
{% endblock %}
|
{% endblock %}
|
Loading…
Reference in a new issue