stc

a simple time card webapp
git clone _git@git.brennen.work:stc.git
Log | Files | Refs | README

commit 0b5f73d330939453368951a0841f395b1c16e3e3
parent a6497c75320260a8c70cea63fe05092a0b639b47
Author: Brennen T. Mazur <brennen@madis.cool>
Date:   Thu, 23 Feb 2023 00:58:20 -0700

fix role permission css

Diffstat:
Mapp/static/css/main.css | 2+-
Mapp/templates/admin/roles/updateroles.html | 4++--
2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/app/static/css/main.css b/app/static/css/main.css @@ -90,7 +90,7 @@ header { /* box-shadow: 0px 0px .1em .1em var(--accent);/* probably shouldn't have box-shadow for clean ui at intermediate page sizes (between laptop and phone off ratio) */ } /********** FULL PAGE **********/ -.hours-grid, .new-user-grid { +.hours-grid, .new-user-grid, .role-permissions { padding:5rem; margin:0; display: grid; diff --git a/app/templates/admin/roles/updateroles.html b/app/templates/admin/roles/updateroles.html @@ -3,7 +3,7 @@ {% block title %}Current Activated Users{% endblock %} {% block content %} - +<section class="role-permissions"> <table> <tr> <th>User Role</th> @@ -47,5 +47,5 @@ {% endfor %} </form> </table> - +</section> {% endblock %}