You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
╭─ Error at /Users/davep/develop/python/textual-sandbox/test_hatch.py in HatchApp.CSS:3:16 ──────────────────────────────────────────────╮
│ 1 │ │
│ 2 │ Screen { │
│ ❱ 3 │ │ hatch: cross red; │
│ 4 │ } │
│ 5 │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯
Invalid value for the hatch property
├── The hatch property can only be set to 'cross', 'horizontal', 'left', 'right', or 'vertical'
└── Assign any of the valid strings to the property
e.g. hatch: cross;
e.g. hatch: horizontal;
e.g. hatch: left;
e.g. hatch: right;
e.g. hatch: vertical;
CSS parsing failed: 1 error found in stylesheet
According to the docs for
hatch
you can do something like this:hatch: cross red;
however, if I try that:
I get the following error:
on the other hand this is fine:
The text was updated successfully, but these errors were encountered: