Skip to content

Commit

Permalink
WIP align boxes
Browse files Browse the repository at this point in the history
  • Loading branch information
janvhs committed Aug 9, 2024
1 parent a7953b7 commit c6675c0
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ function HostRelevantPatches({ hostName, onNavigate, patches }) {
Relevant Patches: <span className="font-bold">{hostName}</span>
</PageHeader>
</div>
<div className="flex w-1/2 gap-2 justify-end">
<div className="flex w-1/2 gap-2 justify-end bg-red-500">
<Select
className=""
onChange={setDisplayedAdvisories}
Expand All @@ -86,13 +86,14 @@ function HostRelevantPatches({ hostName, onNavigate, patches }) {
value={displayedAdvisories}
/>
<Input
className="flex"
className="flex h-min"
onChange={(e) => setSearch(e.target.value)}
placeholder="Search by Synopsis"
prefix={<EOS_SEARCH size="l" />}
/>
<a href={file} download={`${hostName}-patches.csv`}>
<Button
className="h-min w-max"
type="primary-white"
disabled={displayedPatches?.length <= 0}
>
Expand Down

0 comments on commit c6675c0

Please sign in to comment.