feat(aio): filtree updates

This commit is contained in:
Stefanie Fluin 2017-04-11 10:35:36 -07:00 committed by Pete Bacon Darwin
parent 3ec58ecea0
commit 2da0f1639f
1 changed files with 26 additions and 25 deletions

View File

@ -1,24 +1,27 @@
.filetree { aio-filetree {
background: $offwhite; background: $offwhite;
box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, .2); box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, .2);
border: 4px solid $lightgray; border: 4px solid $lightgray;
margin: 0 0 5px 0; margin: 0 0 5px 0;
padding: 10px; padding: 10px;
display: flex;
.file { flex-direction: column;
display: block; height: 100%;
font-family: $main-font;
line-height: 32px;
color: $darkgray;
} }
.children { aio-folder {
padding-left: 5px; padding-left: 24px;
position: relative; position: relative;
overflow: hidden; overflow: hidden;
display: flex;
flex-direction: column;
}
.file { aio-file {
display: block;
position: relative; position: relative;
line-height: 32px;
padding-left: 5px;
&:before { &:before {
content: ''; content: '';
@ -33,5 +36,3 @@
border-radius: 0 0 0 3px; border-radius: 0 0 0 3px;
} }
} }
}
}