mirror of
https://github.com/OneUptime/oneuptime.git
synced 2026-04-06 00:32:12 +02:00
fix overlap ui
This commit is contained in:
@@ -40,7 +40,7 @@ const MasterPage: FunctionComponent<ComponentProps> = (
|
||||
<div className={props.className}>
|
||||
<div
|
||||
className={
|
||||
props.makeTopSectionUnstick ? '' : 'sticky top-0'
|
||||
props.makeTopSectionUnstick ? '' : 'sticky top-0 z-10'
|
||||
}
|
||||
>
|
||||
<TopSection
|
||||
|
||||
@@ -51,14 +51,14 @@ const Modal: FunctionComponent<ComponentProps> = (
|
||||
|
||||
return (
|
||||
<div
|
||||
className="relative z-10"
|
||||
className="relative z-20"
|
||||
aria-labelledby="modal-title"
|
||||
role="dialog"
|
||||
aria-modal="true"
|
||||
>
|
||||
<div className="fixed inset-0 bg-gray-500 bg-opacity-75 transition-opacity"></div>
|
||||
|
||||
<div className="fixed inset-0 z-10 overflow-y-auto">
|
||||
<div className="fixed inset-0 z-20 overflow-y-auto">
|
||||
<div className="flex min-h-full items-end justify-center p-4 text-center sm:items-center sm:p-0">
|
||||
<div
|
||||
className={`relative transform rounded-lg bg-white text-left shadow-xl transition-all sm:my-8 sm:w-full ${
|
||||
|
||||
Reference in New Issue
Block a user