Skip to content

Commit

Permalink
Fix background color for popup in /panel/users
Browse files Browse the repository at this point in the history
  • Loading branch information
MathieuSchl committed Sep 21, 2024
1 parent 81f7559 commit 0e449bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions front/pages/panel/users.js
Original file line number Diff line number Diff line change
Expand Up @@ -305,12 +305,12 @@ export default function Settings({ authorizations, rolesList }) {
<Dialog
open={open}
as="div"
className="fixed inset-0 flex items-center justify-center"
className="fixed inset-0 flex items-center justify-center bg-black bg-opacity-50"
onClose={setOpen}
>
<DialogPanel
transition
className={`duration-300 ease-out data-[closed]:transform-[scale(95%)] data-[closed]:opacity-0 bg-black bg-opacity-50 w-8/12`}
className={`duration-300 ease-out data-[closed]:transform-[scale(95%)] data-[closed]:opacity-0 w-8/12`}
>
<div
className="flex items-end justify-center min-h-screen pt-4 px-4 pb-20 text-center sm:block sm:p-0"
Expand Down

0 comments on commit 0e449bc

Please sign in to comment.