-
Notifications
You must be signed in to change notification settings - Fork 7
Open
Description
I really like this theme collection, but I ran into some minor issues while using them, I'm not experienced on how Atom themes are made, so I've put some workaround lines on my style.less to make it work, if you're having the same issues I'm having, try putting those lines in your style.less.
- Gutter column is not all the way down:
What's supposed to look like:
The workaround:
atom-text-editor .gutter {
min-height: 1000000px;
}
- Weird rendering when selecting brackets: ( bracket-matcher package )
(You can see a big horizontal line at the top of the editor, and some weird rendering on the bracket selection)

What's (kinda) supposed to look like:
(There should be a highlight on the matching brackets, but I'm not smart enough to figure that out)

The workaround:
atom-text-editor::shadow .bracket-matcher .region {
border-bottom: transparent;
background-color: transparent;
opacity: 0;
}
.bracket-matcher {
background-color: #f0624b;
opacity: 0;
border: 1px solid #ffffff;
}
Metadata
Metadata
Assignees
Labels
No labels



