Clear cache on relaod

This commit is contained in:
2026-08-05 23:36:34 -05:00
parent 49bc022909
commit 1fb42334ae
9 changed files with 103 additions and 3 deletions

View File

@@ -11,6 +11,14 @@ body {
padding: 24px;
}
header {
display: flex;
align-items: center;
justify-content: space-between;
gap: 10px;
margin-bottom: 10px;
}
h1 {
margin: 0;
font-size: 0;
@@ -27,6 +35,23 @@ p {
color: #8ea292;
}
#clearHistoryBtn {
border: 1px solid #3f2a2a;
background: #1c1111;
color: #dcb9b9;
border-radius: 999px;
cursor: pointer;
padding: 6px 10px;
font-size: 12px;
transition: all 120ms ease;
}
#clearHistoryBtn:hover {
border-color: #6b4444;
color: #f3d7d7;
background: #241515;
}
#historyList {
list-style: none;
margin: 0;