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