beeg beeg one

This commit is contained in:
2026-02-22 08:57:47 -08:00
parent f6e4a4e209
commit 8e1b0376c5
31 changed files with 134 additions and 63 deletions
+4
View File
@@ -0,0 +1,4 @@
(widget my-panel
(box :class "panel-container"
(label :text "Hello, world!" :class "hello-label")))
+16
View File
@@ -0,0 +1,16 @@
* {
all: unset;
font-family: "JetBrainsMono Nerd Font", "monospace";
}
.panel-container {
background-color: rgba(30, 30, 30, 0.9);
border-radius: 10px;
padding: 20px;
margin: 10px;
}
.hello-label {
color: white;
font-size: 20px;
}