Allow styling of the gutter for block lines

This commit is contained in:
Antonio Scandurra 2021-11-19 11:29:10 +01:00
parent 8d1a4a6a24
commit 8d5e3fb159
2 changed files with 48 additions and 24 deletions

View file

@ -262,6 +262,8 @@ pub struct InputEditorStyle {
pub struct BlockStyle {
pub background: Option<Color>,
pub border: Option<Color>,
pub gutter_background: Option<Color>,
pub gutter_border: Option<Color>,
}
impl EditorStyle {