Missing border on OS X
Closed this issue · 3 comments
rnarian commented
simurai commented
Yeah, it does look better with a border. I think there is a platform-*
class that gets added to the body and could be used.
rnarian commented
Awesome! This is what I use in my styles.less
now:
.platform-darwin atom-workspace.theme-one-light-ui {
border-top: 1px solid rgba(0,0,0,.2);
}
.platform-darwin.is-blurred atom-workspace.theme-one-light-ui {
border-top: 1px solid rgba(0,0,0,.1);
}
I would've sent a pull request, but I don't really know where to put it.
simurai commented
Ok, added to styles/atom.less
. Thanks for your suggestion.