mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2024-11-10 10:17:11 +03:00
601cf41108
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.
23 lines
303 B
CSS
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);
|
|
}
|
|
|