mirror of
https://github.com/sussy-code/smov.git
synced 2024-12-29 16:07:40 +01:00
modal background changed
This commit is contained in:
parent
12c245b2da
commit
2239c186a5
2 changed files with 2 additions and 2 deletions
|
@ -39,7 +39,7 @@ export function ModalCard(props: { className?: string; children?: ReactNode }) {
|
|||
return (
|
||||
<div
|
||||
className={[
|
||||
"relative mx-2 w-[500px] overflow-hidden rounded-lg bg-denim-200 px-10 py-10 sm:w-[500px] md:w-[500px] lg:w-[1000px]",
|
||||
"relative mx-2 w-[500px] overflow-hidden rounded-lg bg-denim-300 px-10 py-10 sm:w-[500px] md:w-[500px] lg:w-[1000px]",
|
||||
props.className ?? "",
|
||||
].join(" ")}
|
||||
>
|
||||
|
|
|
@ -46,7 +46,7 @@ export default function SettingsModal(props: {
|
|||
).toFixed(0);
|
||||
return (
|
||||
<Modal show={props.show}>
|
||||
<ModalCard className="bg-ash-300 text-white">
|
||||
<ModalCard className="text-white">
|
||||
<div className="flex flex-col gap-4">
|
||||
<div className="flex flex-row justify-between">
|
||||
<span className="text-xl font-bold">{t("settings.title")}</span>
|
||||
|
|
Loading…
Reference in a new issue