Add box-shadow, reduce padding on mobile.

This commit is contained in:
symant233
2022-11-29 18:58:49 +08:00
parent 0684f04546
commit bfb2db73b5
7 changed files with 10 additions and 10 deletions
+2 -2
View File
@@ -20,8 +20,8 @@ export default function Folders() {
<main className="flex w-full flex-1 flex-col bg-gray-50 dark:bg-gray-800">
<Navbar />
<div className="mx-auto w-full max-w-5xl p-4">
<nav className="mb-4 flex items-center justify-between space-x-3 pl-1">
<div className="mx-auto w-full max-w-5xl sm:p-4 py-4">
<nav className="mb-4 flex items-center justify-between space-x-3 sm:pl-1 sm:px-0 px-4">
<Breadcrumb query={query} />
<SwitchLayout />
</nav>
+2 -2
View File
@@ -17,8 +17,8 @@ export default function Home() {
<main className="flex w-full flex-1 flex-col bg-gray-50 dark:bg-gray-800">
<Navbar />
<div className="mx-auto w-full max-w-5xl p-4">
<nav className="mb-4 flex items-center justify-between pl-1">
<div className="mx-auto w-full max-w-5xl sm:p-4 py-4">
<nav className="mb-4 flex items-center justify-between sm:pl-1 sm:px-0 px-4">
<Breadcrumb />
<SwitchLayout />
</nav>