changelog

This commit is contained in:
Will McGugan
2024-08-31 17:14:34 +01:00
parent 94cde8a8dc
commit af80839a20
6 changed files with 23 additions and 5 deletions

View File

@@ -18,7 +18,7 @@ class DictionaryApp(App):
CSS_PATH = "dictionary.tcss"
def compose(self) -> ComposeResult:
yield Input(placeholder="Search for a word")
yield Input(placeholder="Search for a word", id="dictionary-search")
with VerticalScroll(id="results-container"):
yield Markdown(id="results")

View File

@@ -2,7 +2,7 @@ Screen {
background: $panel;
}
Input {
Input#dictionary-search {
dock: top;
margin: 1 0;
}