1
0
mirror of https://koodu.h-i.works/projects/thebadspace synced 2025-06-25 16:04:37 -05:00

Added Front listings and member editing

Added the template for to display locations on the front end. Still need
to add template for individual locations.

Also added member editing. Still need to wire up the avatar uploading
but adding and editing member information is possible. Still need to
fine tune it according to roles
This commit is contained in:
Ro
2023-01-16 20:17:22 -08:00
parent e897453664
commit c5d1ab0266
13 changed files with 291 additions and 104 deletions

View File

@ -1,6 +1,8 @@
section[role="den-login"] {
padding: 30px;
width: 300px;
width: 100%;
max-width: 600px;
padding: 10px;
margin: 0 auto;
color: var(--highlight);
}
@ -12,7 +14,10 @@ section[role="den-login"] div[role="system-notice"] {
}
section[role="den-index"] {
padding: 20px;
width: 100%;
max-width: 600px;
padding: 10px;
margin: 0 auto;
color: var(--white);
}

View File

@ -1,5 +1,8 @@
section[role="loc-index"] {
padding: 20px;
width: 100%;
max-width: 600px;
padding: 10px;
margin: 0 auto;
}
section[role="loc-index"] img {

View File

@ -0,0 +1,7 @@
section[role="members-index"] {
width: 100%;
max-width: 600px;
padding: 10px;
margin: 0 auto;
color: var(--white);
}

View File

@ -4,4 +4,5 @@
@import "../global/frame.css";
@import "../global/icons.css";
@import "locations.css";
@import "members.css";
@import "index.css";

View File

@ -2,7 +2,7 @@ section[role="about"] {
background: var(--primary);
width: 100%;
max-width: 600px;
padding: 100px;
padding: 10px;
margin: 0 auto;
color: var(--white);
}

View File

@ -2,8 +2,7 @@ section[role="listings"] {
background: var(--primary);
width: 100%;
max-width: 600px;
border-radius: 3px;
padding: 100px;
padding: 10px;
margin: 0 auto;
color: var(--white);
}