Added search to real-time activity log.

This commit is contained in:
Mike Cao 2023-12-10 20:12:13 -08:00
parent cad719fd23
commit 765874731d
2 changed files with 62 additions and 9 deletions

View file

@ -66,3 +66,25 @@
.row .link:hover {
color: var(--primary400);
}
.search {
max-width: 300px;
}
.actions {
display: flex;
gap: 20px;
align-items: center;
justify-content: space-between;
margin-bottom: 10px;
}
@media only screen and (max-width: 992px) {
.actions {
flex-direction: column;
}
.search {
max-width: 100%;
}
}