Move files into darren sandbox

This commit is contained in:
Darren Burns
2022-06-22 14:02:24 +01:00
parent 4f8dba7225
commit 76b39747ca
8 changed files with 0 additions and 16 deletions

View File

@@ -1,11 +0,0 @@
from textual.app import App, ComposeResult
from textual.widgets import Static
class HSLApp(App):
def compose(self) -> ComposeResult:
yield Static(classes="box")
app = HSLApp(css_path="hsl.scss", watch_css=True)
app.run()

View File

@@ -1,5 +0,0 @@
.box {
height: 1fr;
/*background: rgb(180,50, 50);*/
background: hsl(180,50%, 50%);
}