mirror of
https://github.com/idanoo/autobrr
synced 2025-07-24 17:29: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 justify-between h-16 px-4 sm:px-0">
|
||||||
<div className="flex items-center">
|
<div className="flex items-center">
|
||||||
<div className="flex-shrink-0 flex items-center">
|
<div className="flex-shrink-0 flex items-center">
|
||||||
<img
|
<Link to="/">
|
||||||
className="block lg:hidden h-10 w-auto"
|
<img
|
||||||
src={logo}
|
className="block lg:hidden h-10 w-auto"
|
||||||
alt="Logo"
|
src={logo}
|
||||||
/>
|
alt="Logo"
|
||||||
<img
|
/>
|
||||||
className="hidden lg:block h-10 w-auto"
|
<img
|
||||||
src={logo}
|
className="hidden lg:block h-10 w-auto"
|
||||||
alt="Logo"
|
src={logo}
|
||||||
/>
|
alt="Logo"
|
||||||
|
/>
|
||||||
|
</Link>
|
||||||
</div>
|
</div>
|
||||||
<div className="sm:ml-3 hidden sm:block">
|
<div className="sm:ml-3 hidden sm:block">
|
||||||
<div className="flex items-baseline space-x-4">
|
<div className="flex items-baseline space-x-4">
|
||||||
|
|
|
@ -33,9 +33,9 @@ export const Stats = () => {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
<h3 className="text-2xl font-medium leading-6 text-gray-900 dark:text-gray-200">
|
<h1 className="text-3xl font-bold text-black dark:text-white">
|
||||||
Stats
|
Stats
|
||||||
</h3>
|
</h1>
|
||||||
|
|
||||||
<dl className="grid grid-cols-1 gap-5 mt-5 sm:grid-cols-2 lg:grid-cols-3">
|
<dl className="grid grid-cols-1 gap-5 mt-5 sm:grid-cols-2 lg:grid-cols-3">
|
||||||
<StatsItem name="Filtered Releases" value={data?.filtered_count} />
|
<StatsItem name="Filtered Releases" value={data?.filtered_count} />
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue