pulsar/static/atom.css
Nathan Sobo 601cf41108 Fix bug where file-finder pushed editor up.
For now, I'm removing the flexbox treatment of #app-vertical because the file finder just needs to overlay the bottom and absolute positioning is simpler. I'm also using requireStylesheet to load the file finders CSS instead of a link tag.
2012-03-14 18:28:23 -06:00

23 lines
303 B
CSS

* {
margin: 0;
padding: 0;
}
body {
font-family: Lucida Grande;
font-size: 12px;
}
#app-horizontal {
min-height: 100%;
display: -webkit-flexbox;
-webkit-flex-flow: row;
background-image: url(static/images/linen.png);
}
#app-vertical {
min-height: 100%;
width: -webkit-flex(1);
}