mirror of
https://github.com/sct/overseerr.git
synced 2025-09-17 17:24:35 +02:00
fix(ui): hide search bar behind slideover when opened (#3348)
This commit is contained in:

committed by
GitHub

parent
af880a6c83
commit
b3882de893
5
.vscode/settings.json
vendored
5
.vscode/settings.json
vendored
@@ -16,5 +16,8 @@
|
||||
}
|
||||
],
|
||||
"editor.formatOnSave": true,
|
||||
"typescript.preferences.importModuleSpecifier": "non-relative"
|
||||
"typescript.preferences.importModuleSpecifier": "non-relative",
|
||||
"files.associations": {
|
||||
"globals.css": "tailwindcss"
|
||||
}
|
||||
}
|
||||
|
@@ -67,7 +67,7 @@ const SlideOver = ({
|
||||
>
|
||||
{/* eslint-disable-next-line jsx-a11y/no-static-element-interactions */}
|
||||
<div
|
||||
className="slideover relative h-full w-screen max-w-md p-2 sm:p-4"
|
||||
className="slideover relative h-full w-screen max-w-md p-2 sm:p-3"
|
||||
ref={slideoverRef}
|
||||
onClick={(e) => e.stopPropagation()}
|
||||
>
|
||||
|
@@ -43,8 +43,8 @@
|
||||
}
|
||||
|
||||
.slideover {
|
||||
padding-top: calc(1rem + env(safe-area-inset-top)) !important;
|
||||
padding-bottom: calc(1rem + env(safe-area-inset-top)) !important;
|
||||
padding-top: calc(0.75rem + env(safe-area-inset-top)) !important;
|
||||
padding-bottom: calc(0.75rem + env(safe-area-inset-top)) !important;
|
||||
}
|
||||
|
||||
.sidebar-close-button {
|
||||
|
Reference in New Issue
Block a user