Skip to content

Commit

Permalink
feat: make search pretty
Browse files Browse the repository at this point in the history
  • Loading branch information
gorillamoe committed May 18, 2024
1 parent b9e31e5 commit 8a9dcef
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/Search.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ const Component: FC<ComponentProps> = ({ activeTasks }) => {
<h1 className="title">Search</h1>
<h2 className="subtitle">You can export search across tasks and projects.</h2>
<form className="search-form" onSubmit={onFormSubmit}>
<div className="fixed-grid has-2-cols">
<div className="fixed-grid has-3-cols">
<div className="grid">
<div className="cell">
<nav className="panel">
Expand Down Expand Up @@ -494,7 +494,7 @@ const Component: FC<ComponentProps> = ({ activeTasks }) => {
</div>

{showLoading ?
<div className="cell">
<div className="cell is-col-span-2">
<nav className="panel">
<p className="panel-heading">Loading</p>
<div className="field">
Expand All @@ -505,7 +505,7 @@ const Component: FC<ComponentProps> = ({ activeTasks }) => {
: null}

{searchResult ?
<div className="cell">
<div className="cell is-col-span-2">
<nav className="panel">
<p className="panel-heading">Results</p>
<div className="field">
Expand Down

0 comments on commit 8a9dcef

Please sign in to comment.