removed uneeded bg file and cleaned up card layout for breakpoints sm, md, lg, xl

This commit is contained in:
zach
2026-02-19 07:55:18 -05:00
parent 4cd670c9b8
commit 2ef9d3761d
6 changed files with 121 additions and 53 deletions

View File

@@ -8,10 +8,10 @@ const { query } = Astro.props;
<form method="GET">
<div class="d-flex justify-content-between">
<div class="my-2 flex-grow-1 me-2">
<input type="text" name="q" class="form-control w-100" placeholder="Search cards..." value={query} />
<input type="text" name="q" class="form-control w-100 search-box" placeholder="Search cards..." value={query} />
</div>
<div class="my-2">
<input type="submit" class="btn btn-primary w-100" value="Search" />
<input type="submit" class="btn btn-primary w-100 search-button" value="Search" />
</div>
</div>
</form>