Skip to content
This repository has been archived by the owner on Oct 7, 2023. It is now read-only.

Commit

Permalink
fix: remove border from searched date
Browse files Browse the repository at this point in the history
  • Loading branch information
rwietter committed Jul 2, 2023
1 parent a3dfd38 commit aee718a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions domains/dashboard/components/Banner/Banner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@ const Banner: FC<Props> = (props): ReactNode => {
Covid
<strong className='text-slate-800'>&nbsp;Insights</strong>.
</h1>
<span className='pt-1 block text-slate-500 font-semibold border-b-2 border-foregroundLight w-full max-w-fit'>
Pesquisa entre <strong>{startDate}</strong> e <strong>{endDate}</strong>
<span className='pt-2 block text-slate-500 font-semibold w-full max-w-fit'>
Pesquisa entre <strong className='text-slate-950'>{startDate}</strong> e{' '}
<strong className='text-slate-950'>{endDate}</strong>
</span>
</section>
{props.children}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const DownloadImage: FC<Props> = (props) => {
<button onClick={props.action} className='self-end'>
<VscDesktopDownload
size={22}
className='fill-indigo-400 hover:fill-indigo-300 transition-colors'
className='fill-indigo-400 hover:fill-indigo-300 transition-colors mx-1'
/>
</button>
);
Expand Down

0 comments on commit aee718a

Please sign in to comment.