Merge branch 'main' into bugfix/failing-tests-post-dst
commit
a856ae1733
|
@ -342,14 +342,17 @@ export default function Success(props: SuccessProps) {
|
||||||
<div
|
<div
|
||||||
className={classNames(
|
className={classNames(
|
||||||
shouldAlignCentrally ? "text-center" : "",
|
shouldAlignCentrally ? "text-center" : "",
|
||||||
"flex items-end justify-center px-4 pb-20 pt-4 sm:block sm:p-0"
|
"flex items-end justify-center px-4 pb-20 pt-4 sm:flex sm:p-0"
|
||||||
)}>
|
)}>
|
||||||
<div
|
<div
|
||||||
className={classNames("my-4 transition-opacity sm:my-0", isEmbed ? "" : " inset-0")}
|
className={classNames(
|
||||||
|
"main my-4 flex flex-col transition-opacity sm:my-0 ",
|
||||||
|
isEmbed ? "" : " inset-0"
|
||||||
|
)}
|
||||||
aria-hidden="true">
|
aria-hidden="true">
|
||||||
<div
|
<div
|
||||||
className={classNames(
|
className={classNames(
|
||||||
"main inline-block transform overflow-hidden rounded-lg border sm:my-8 sm:max-w-xl",
|
"inline-block transform overflow-hidden rounded-lg border sm:my-8 sm:max-w-xl",
|
||||||
!isBackgroundTransparent && " bg-default dark:bg-muted border-booker border-booker-width",
|
!isBackgroundTransparent && " bg-default dark:bg-muted border-booker border-booker-width",
|
||||||
"px-8 pb-4 pt-5 text-left align-bottom transition-all sm:w-full sm:py-8 sm:align-middle"
|
"px-8 pb-4 pt-5 text-left align-bottom transition-all sm:w-full sm:py-8 sm:align-middle"
|
||||||
)}
|
)}
|
||||||
|
|
Loading…
Reference in New Issue