mirror of
https://github.com/movie-web/movie-web.git
synced 2024-11-13 08:15:06 +01:00
update navigation padding
This commit is contained in:
parent
7a55338c23
commit
f6493f9800
@ -3,9 +3,9 @@ import { Icons } from "components/Icon";
|
||||
import { DISCORD_LINK, GITHUB_LINK } from "mw_constants";
|
||||
import { BrandPill } from "./BrandPill";
|
||||
|
||||
export function BrandHeader() {
|
||||
export function Navigation() {
|
||||
return (
|
||||
<div className="flex justify-between items-center absolute left-0 right-0 top-0 p-3">
|
||||
<div className="flex justify-between items-center absolute left-0 right-0 top-0 py-5 px-7">
|
||||
<div>
|
||||
<BrandPill />
|
||||
</div>
|
@ -2,7 +2,6 @@ import { WatchedMediaCard } from "components/media/WatchedMediaCard";
|
||||
import { SearchBarInput } from "components/SearchBar";
|
||||
import {
|
||||
MWMassProviderOutput,
|
||||
MWMedia,
|
||||
MWMediaType,
|
||||
MWQuery,
|
||||
SearchProviders,
|
||||
@ -17,7 +16,7 @@ import { Title } from "components/text/Title";
|
||||
import { useDebounce } from "hooks/useDebounce";
|
||||
import { useLoading } from "hooks/useLoading";
|
||||
import { IconPatch } from "components/buttons/IconPatch";
|
||||
import { BrandHeader } from "components/layout/BrandHeader";
|
||||
import { Navigation } from "components/layout/Navigation";
|
||||
|
||||
function SearchLoading() {
|
||||
return <Loading className="my-12" text="Fetching your favourite shows..." />;
|
||||
@ -142,7 +141,7 @@ export function SearchView() {
|
||||
|
||||
return (
|
||||
<>
|
||||
<BrandHeader/>
|
||||
<Navigation />
|
||||
<ThinContainer>
|
||||
{/* input section */}
|
||||
<div className="mt-44 space-y-16 text-center">
|
||||
|
Loading…
Reference in New Issue
Block a user