Recent videos component now includes header, search, and sort capabilities

This commit is contained in:
Isaac Abadi
2020-08-09 20:16:10 -04:00
parent 1cdc1640ac
commit c55d3de9a0
3 changed files with 151 additions and 1 deletions

View File

@@ -1,3 +1,34 @@
.file-col {
max-width: 240px;
}
.search-bar {
transition: all .5s ease;
position: relative;
float: right;
}
.search-bar-unfocused {
width: 100px;
}
.search-input {
transition: all .5s ease;
}
.search-bar-focused {
width: 200px;
}
.flex-grid {
width: 100%;
display: block;
position: relative;
padding-left: 12px;
padding-right: 12px;
}
.col {
width: 33%;
display: inline-block;
}