More aesthetic improvements

This commit is contained in:
metacryst
2025-11-26 01:34:43 -06:00
parent eca1354e94
commit fcf0b4b08a
5 changed files with 65 additions and 69 deletions

View File

@@ -47,34 +47,21 @@ class Jobs extends Shadow {
.x(0).y(13, vh)
HStack(() => {
input("Search jobs...", "45vw")
input("Search jobs... (Coming Soon!)", "45vw")
.attr({
"type": "text"
"type": "text",
"disabled": "true"
})
.fontSize(1.1, em)
.paddingLeft(1.3, em)
.background("transparent")
.border("0.3px solid var(--accent2)")
.border("0.5px solid var(--divider)")
.outline("none")
.color("var(--accent)")
.opacity(0.5)
.borderRadius(10, px)
button("Search")
.marginLeft(2, em)
.borderRadius(10, px)
.background("transparent")
.border("0.3px solid var(--accent2)")
.color("var(--accent)")
.fontFamily("Bona Nova")
.onHover(function (hovering) {
if(hovering) {
this.style.background = "var(--green)"
} else {
this.style.background = "transparent"
}
})
.background("grey")
.cursor("not-allowed")
button("+ Add Job")
.width(7, em)