diff --git a/site/src/components/files-tree-file/style.styl b/site/src/components/files-tree-file/style.styl
index 2bdda9a..1528275 100644
--- a/site/src/components/files-tree-file/style.styl
+++ b/site/src/components/files-tree-file/style.styl
@@ -3,7 +3,13 @@
.text
padding-left 12px
- opacity 0.6
+
+ .letter
+ opacity 0.6
+
+ &.highlight
+ opacity 1
+ font-weight bold
.notif
display inline-block
@@ -29,5 +35,7 @@
&:hover
.text
- opacity 1
- color #4bd1c5
\ No newline at end of file
+ color #4bd1c5
+
+ .letter
+ opacity 1
\ No newline at end of file
diff --git a/site/src/components/files-tree-file/template.html b/site/src/components/files-tree-file/template.html
index b818afe..84657e4 100644
--- a/site/src/components/files-tree-file/template.html
+++ b/site/src/components/files-tree-file/template.html
@@ -3,7 +3,7 @@
- {{ letter }}
+ {{ letter }}
new
diff --git a/site/src/components/files-tree-folder/style.styl b/site/src/components/files-tree-folder/style.styl
index 4e8ac08..76e6563 100644
--- a/site/src/components/files-tree-folder/style.styl
+++ b/site/src/components/files-tree-folder/style.styl
@@ -6,12 +6,20 @@
.text
padding-left 12px
- opacity 0.6
+
+ .letter
+ opacity 0.6
+
+ &.highlight
+ opacity 1
+ font-weight bold
&:hover
.icon
opacity 1
.text
- opacity 1
- color #4bd1c5
\ No newline at end of file
+ color #4bd1c5
+
+ .letter
+ opacity 1
\ No newline at end of file
diff --git a/site/src/components/files-tree-folder/template.html b/site/src/components/files-tree-folder/template.html
index ca9bd02..cf06f24 100644
--- a/site/src/components/files-tree-folder/template.html
+++ b/site/src/components/files-tree-folder/template.html
@@ -4,7 +4,7 @@
- {{ letter }}
+ {{ letter }}
diff --git a/site/src/components/files-tree/style.styl b/site/src/components/files-tree/style.styl
index 94f2db2..b5c0f40 100644
--- a/site/src/components/files-tree/style.styl
+++ b/site/src/components/files-tree/style.styl
@@ -7,6 +7,16 @@
background #26283B
color #ffffff
+.search
+ display block
+ font-size 14px
+ padding-left 20px
+ width 100%
+ height 40px
+ margin-bottom 10px
+ line-height 40px
+ border-bottom 1px solid rgba(255, 255, 255, 0.2)
+
.content
line-height 28px
font-size 14px
\ No newline at end of file
diff --git a/site/src/components/files-tree/template.html b/site/src/components/files-tree/template.html
index 2a69616..a8550c7 100644
--- a/site/src/components/files-tree/template.html
+++ b/site/src/components/files-tree/template.html
@@ -1,5 +1,5 @@