mirror of
https://github.com/idanoo/autobrr
synced 2025-07-23 16:59:12 +00:00
enhancement(web): autobrr logo link to dashboard (#638)
* feat(web): Made autobrr logo link to frontpage Clicking the logo now directs you to the frontpage. * fixs(dashboard) Changed Stats header tag to h1 Header on Dashboard was a h3 tag while the ones on Filters etc. is h1. Made it match the rest of the UI with this change.
This commit is contained in:
parent
626fa6f156
commit
834be0a309
2 changed files with 14 additions and 12 deletions
|
@ -40,16 +40,18 @@ export default function Base() {
|
|||
<div className="flex items-center justify-between h-16 px-4 sm:px-0">
|
||||
<div className="flex items-center">
|
||||
<div className="flex-shrink-0 flex items-center">
|
||||
<img
|
||||
className="block lg:hidden h-10 w-auto"
|
||||
src={logo}
|
||||
alt="Logo"
|
||||
/>
|
||||
<img
|
||||
className="hidden lg:block h-10 w-auto"
|
||||
src={logo}
|
||||
alt="Logo"
|
||||
/>
|
||||
<Link to="/">
|
||||
<img
|
||||
className="block lg:hidden h-10 w-auto"
|
||||
src={logo}
|
||||
alt="Logo"
|
||||
/>
|
||||
<img
|
||||
className="hidden lg:block h-10 w-auto"
|
||||
src={logo}
|
||||
alt="Logo"
|
||||
/>
|
||||
</Link>
|
||||
</div>
|
||||
<div className="sm:ml-3 hidden sm:block">
|
||||
<div className="flex items-baseline space-x-4">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue