Fix single/twin folders being center-aligned instead of left-aligned

This commit is contained in:
Mahdi Dibaiee
2015-09-15 19:45:30 +04:30
parent 596799b6f0
commit 43239b4a4c
6 changed files with 14 additions and 21 deletions

View File

@ -13,7 +13,7 @@ export default {
let rect = React.findDOMNode(this.refs.container).getBoundingClientRect();
let {x, y, width, height} = rect;
let left = x + width / 2 - MENU_WIDTH / 2,
let left = window.innerWidth / 2 - MENU_WIDTH / 2,
top = y + height / 2 + MENU_TOP_SPACE;
let dialogHeight = document.getElementById('fileMenu').offsetHeight;

View File

@ -17,16 +17,12 @@
i {
margin-right: 1.4rem;
}
&:active {
background: @gray;
}
}
.grid .file, .grid .directory {
flex: 1 0 30%;
flex: 1 0 33.33%;
max-width: 30%;
max-width: 33.33%;
padding: 1.4rem 0.5rem;
@ -60,6 +56,10 @@
p {
flex: 1 1;
}
&:active {
background: @gray;
}
}
.directory i {

View File

@ -9,8 +9,4 @@
overflow-x: hidden;
overflow-y: auto;
&.grid {
justify-content: space-between;
}
}