mirror of
https://github.com/usememos/memos.git
synced 2025-06-05 22:09:59 +02:00
chore: update home padding styles
This commit is contained in:
@ -7,7 +7,7 @@ const HomeSidebar = () => {
|
||||
const currentUser = useCurrentUser();
|
||||
|
||||
return (
|
||||
<aside className="relative w-full px-4 h-full max-h-screen overflow-auto hide-scrollbar flex flex-col justify-start items-start py-4 sm:pt-6">
|
||||
<aside className="relative w-full h-full max-h-screen overflow-auto hide-scrollbar flex flex-col justify-start items-start py-4 sm:pt-6">
|
||||
<SearchBar />
|
||||
<PersonalStatistics user={currentUser} />
|
||||
<TagList />
|
||||
|
@ -26,7 +26,7 @@ const HomeSidebarDrawer = () => {
|
||||
<Icon.Search className="w-5 h-auto dark:text-gray-400" />
|
||||
</IconButton>
|
||||
<Drawer anchor="right" size="sm" open={open} onClose={toggleDrawer(false)}>
|
||||
<div className="w-full h-full px-1 bg-zinc-100 dark:bg-zinc-900">
|
||||
<div className="w-full h-full px-5 bg-zinc-100 dark:bg-zinc-900">
|
||||
<HomeSidebar />
|
||||
</div>
|
||||
</Drawer>
|
||||
|
@ -5,11 +5,12 @@ import useResponsiveWidth from "@/hooks/useResponsiveWidth";
|
||||
import NavigationDrawer from "./NavigationDrawer";
|
||||
|
||||
interface Props {
|
||||
className?: string;
|
||||
children?: React.ReactNode;
|
||||
}
|
||||
|
||||
const MobileHeader = (props: Props) => {
|
||||
const { children } = props;
|
||||
const { className, children } = props;
|
||||
const { sm } = useResponsiveWidth();
|
||||
const [titleText] = useState("Memos");
|
||||
const { y: offsetTop } = useWindowScroll();
|
||||
@ -18,7 +19,8 @@ const MobileHeader = (props: Props) => {
|
||||
<div
|
||||
className={classNames(
|
||||
"sticky top-0 pt-3 pb-2 sm:pt-2 px-4 sm:px-6 sm:mb-1 bg-zinc-100 dark:bg-zinc-900 bg-opacity-80 backdrop-blur-lg flex md:hidden flex-row justify-between items-center w-full h-auto flex-nowrap shrink-0 z-1",
|
||||
offsetTop > 0 && "shadow-md"
|
||||
offsetTop > 0 && "shadow-md",
|
||||
className
|
||||
)}
|
||||
>
|
||||
<div className="flex flex-row justify-start items-center mr-2 shrink-0 overflow-hidden">
|
||||
|
Reference in New Issue
Block a user