aboutsummaryrefslogtreecommitdiff
path: root/src/public
diff options
context:
space:
mode:
authorAkshay <[email protected]>2024-11-16 22:08:05 +0000
committerAkshay <[email protected]>2024-11-16 22:08:05 +0000
commit42409ecb39b5bb7bb98a8f3c0515876dcba40326 (patch)
tree0e161467a7ffa9fd66ce9df0631ceb6db238b86c /src/public
parent1ae401253c54a0a195257df95281bf64760f809c (diff)
add dashboard view, invites
Diffstat (limited to 'src/public')
-rw-r--r--src/public/styles.css22
1 files changed, 21 insertions, 1 deletions
diff --git a/src/public/styles.css b/src/public/styles.css
index 6c6e705..ba2940d 100644
--- a/src/public/styles.css
+++ b/src/public/styles.css
@@ -517,8 +517,28 @@ form input[type="submit"]:hover {
517 color: var(--text-color-muted); 517 color: var(--text-color-muted);
518} 518}
519 519
520.register-error-message { 520.register-error-message,
521.dashboard-error-message {
521 margin-bottom: 1rem; 522 margin-bottom: 1rem;
522 flex-flow: row wrap; 523 flex-flow: row wrap;
523 color: var(--error-text-color); 524 color: var(--error-text-color);
524} 525}
526
527.invite-table {
528 width: 100%;
529 padding: 10px 0;
530}
531
532.invite-table th,
533.invite-table td
534{
535 padding: 5px 0;
536}
537
538.invite-table-header {
539 text-align: left;
540}
541
542.invite-link {
543 font-family: monospace;
544}