aboutsummaryrefslogtreecommitdiffstats
path: root/ui/src/App.css
diff options
context:
space:
mode:
authorEllie Huxtable <ellie@elliehuxtable.com>2024-05-06 08:11:47 +0100
committerGitHub <noreply@github.com>2024-05-06 08:11:47 +0100
commit754ddeaa8d3e3e4f3efc93d5bb22c68c31bb5c36 (patch)
treef48fb912c2be2d08855e97ff24b6919a115c3c4f /ui/src/App.css
parentchore(deps): bump serde_with from 3.7.0 to 3.8.1 (#2002) (diff)
downloadatuin-754ddeaa8d3e3e4f3efc93d5bb22c68c31bb5c36.zip
feat(ui): scroll history infinitely (#1999)
* wip, history scrolls right! * wip * virtual scroll fucking worksssss * paging works :) * scroll search results now too
Diffstat (limited to '')
-rw-r--r--ui/src/App.css16
1 files changed, 16 insertions, 0 deletions
diff --git a/ui/src/App.css b/ui/src/App.css
index 5a32a1a5..cf6d3123 100644
--- a/ui/src/App.css
+++ b/ui/src/App.css
@@ -9,3 +9,19 @@ html {
.logo.react:hover {
filter: drop-shadow(0 0 2em #61dafb);
}
+
+.history-header {
+ height: 150px;
+}
+
+.history-search {
+ height: 64px;
+}
+
+.history-list {
+ height: calc(100vh - 150px - 64px);
+}
+
+.history-item {
+ height: 90px;
+}