fix CSS on saved searches and hashtags

master
Drake 1 year ago
parent fdac305eef
commit 287a8ca82f

@ -206,6 +206,7 @@ h3 {
}
}
.saved-search {
color: black !important;
background-color: darkgrey;
border-radius: 0.5em;
border-style: solid;

@ -138,7 +138,7 @@ export default async (params: URLSearchParams, ctx: Context) => {
<div>
<a
href={`/search?query=${v}&type=tag`}
style="background-color:darkgrey; border-radius: 0.3em; padding: 0.1em; border: none;outline: none;text-decoration: none; margin-bottom: 0.5em;"
style="color: black !important; background-color:darkgrey; border-radius: 0.3em; padding: 0.2em; border: none;outline: none;text-decoration: none; margin-bottom: 0.5em;"
>
#{v}
</a>

Loading…
Cancel
Save