Sorting and searching are working

This commit is contained in:
2018-12-10 01:41:37 +11:00
parent 057fa7697d
commit 95879b279f
5 changed files with 329 additions and 14 deletions
+24
View File
@@ -47,3 +47,27 @@ footer {
flex-direction: column;
justify-content: flex-start;
}
/* centering */
.centeredContent {
flex: 0 1 auto;
display: flex;
flex-direction: row;
justify-content: center;
}
.rightContent {
flex: 0 1 auto;
display: flex;
flex-direction: row;
justify-content: flex-end;
}
/* Up and Down Arrows */
.descend:after{
content: "\25B2";
}
.ascend:after{
content: "\25BC";
}