app icon, styling, light mode, top bar component

This commit is contained in:
metacryst
2026-03-17 05:33:28 -05:00
parent 5903bafee5
commit 530ea7da89
24 changed files with 106 additions and 65 deletions

View File

@@ -3,7 +3,7 @@ import "../../components/TopBar.js"
class Announcements extends Shadow {
render() {
VStack(() => {
TopBar()
})
.boxSizing("border-box")
.backgroundColor("var(--main)")

View File

@@ -38,7 +38,6 @@ class Events extends Shadow {
render() {
VStack(() => {
TopBar()
SearchBar()

View File

@@ -39,7 +39,6 @@ class Jobs extends Shadow {
render() {
VStack(() => {
TopBar()
// JobForm()

View File

@@ -25,7 +25,6 @@ class People extends Shadow {
render() {
VStack(() => {
TopBar()
VStack(() => {
if (this.people == "") {

View File

@@ -13,7 +13,7 @@ class PeopleCard extends Shadow {
.paddingHorizontal(0.5, em)
.border("1px solid var(--accent)")
.borderRadius(100, pct)
.background("black")
.background("var(--darkaccent)")
VStack(() => {
p(this.person.first_name + " " + this.person.last_name)