Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
willmcgugan committed Oct 8, 2023
1 parent 154e67c commit 5c9fa69
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions src/textual/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,17 +274,14 @@ class App(Generic[ReturnType], DOMNode):
and therefore takes priority in the event of a specificity clash."""

# Default (the lowest priority) CSS
DEFAULT_CSS: ClassVar[
str
] = """
DEFAULT_CSS: ClassVar[str]
DEFAULT_CSS = """
App {
background: $background;
color: $text;
}
*:disabled:can-focus {
opacity: 0.7;
}
"""

Expand Down

0 comments on commit 5c9fa69

Please sign in to comment.