mirror of
https://github.com/atom/atom.git
synced 2026-01-23 13:58:08 -05:00
Switching back to the new flexbox and re-introducing a scrollable-content node that the flexbox is applied to. This has no height settings so it grows to contains the gutter and lines. The editor outside of it has a width / height of 100% of its container plus overflow-y of scroll. Trying to apply flexbox AND a 100% height + scroll all to the editor causes display artifacts.
19 lines
233 B
CSS
19 lines
233 B
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body {
|
|
font-family: Lucida Grande;
|
|
font-size: 12px;
|
|
}
|
|
|
|
#root-view {
|
|
height: 100%;
|
|
height: 100%;
|
|
overflow-y: auto;
|
|
position: relative;
|
|
background-image: url(static/images/linen.png);
|
|
}
|
|
|