[BUGFIX] Mobile Breakpoint: Add user broken user admin interface

This commit is contained in:
Marie Birner 2023-04-06 18:30:02 +02:00
parent 7156e38d6c
commit d721303b9e
2 changed files with 4 additions and 4 deletions

View File

@ -4,7 +4,7 @@
# Notes / Bugfixes
- [ ] User loggedin status not present on user admin interface (header/footer not rendering) [ph]
- [ ] is_cox: cox can become cox and than rower at the same event, (rower and than cox -> exception working) [ph]
- [ ] Mobile Breakpoint: Add user broken user admin interface [mb]
- [x] Mobile Breakpoint: Add user broken user admin interface [mb]
# Frontend Process
´cd frontend´

View File

@ -6,7 +6,7 @@
<div class="max-w-screen-lg w-full">
<h1 class="text-center text-3xl uppercase tracking-wide font-bold text-primary-900">Users</h1>
<form action="/admin/user/new" method="post" class="mt-4 bg-primary-900 rounded-md text-white px-3 pb-3 pt-2 flex items-end md:items-center justify-between">
<form action="/admin/user/new" method="post" class="mt-4 bg-primary-900 rounded-md text-white px-3 pb-3 pt-2 sm:flex items-end justify-between">
<div class="w-full">
<h2 class="text-md font-bold mb-2 uppercase tracking-wide">Neuen User hinzufügen</h2>
<div class="grid md:grid-cols-3">
@ -19,8 +19,8 @@
</div>
</div>
</div>
<div>
<input value="Hinzufügen" type="submit" class="w-28 rounded-md bg-primary-500 px-3 py-2 text-sm font-semibold text-white hover:bg-primary-500 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-primary-600 cursor-pointer"/>
<div class="text-right">
<input value="Hinzufügen" type="submit" class="w-28 mt-2 sm:mt-0 rounded-md bg-primary-500 px-3 py-2 text-sm font-semibold text-white hover:bg-primary-500 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-primary-600 cursor-pointer"/>
</div>
</form>