fix: adjust layout and font settings in presentation and upload components
This commit is contained in:
parent
4af3534c6d
commit
13527f244b
5 changed files with 5 additions and 5 deletions
|
|
@ -157,7 +157,7 @@ const PresentationPage: React.FC<PresentationPageProps> = ({
|
|||
background: "rgba(255, 255, 255, 0.10)",
|
||||
boxShadow: "0 0 20.01px 0 rgba(122, 90, 248, 0.16) inset",
|
||||
}}
|
||||
className="p-6 rounded-[20px] flex flex-col items-center overflow-hidden justify-center border border-[#EDECEC] "
|
||||
className="p-6 rounded-[20px] font-inter flex flex-col items-center overflow-hidden justify-center border border-[#EDECEC] "
|
||||
>
|
||||
<div className="w-full max-w-[1280px] h-full">
|
||||
|
||||
|
|
|
|||
|
|
@ -347,7 +347,7 @@ const UploadPage = () => {
|
|||
};
|
||||
|
||||
return (
|
||||
<Wrapper className="pb-10 lg:max-w-[70%] xl:max-w-[65%]">
|
||||
<Wrapper className="pb-10 lg:max-w-[65%] xl:max-w-[60%]">
|
||||
<OverlayLoader
|
||||
show={loadingState.isLoading}
|
||||
text={loadingState.message}
|
||||
|
|
|
|||
|
|
@ -137,7 +137,7 @@ const PresentationPage = ({ presentation_id }: { presentation_id: string }) => {
|
|||
<div className="">
|
||||
<div
|
||||
id="presentation-slides-wrapper"
|
||||
className="mx-auto flex flex-col items-center overflow-hidden justify-center "
|
||||
className="mx-auto flex flex-col font-inter items-center overflow-hidden justify-center "
|
||||
>
|
||||
{!presentationData ||
|
||||
|
||||
|
|
|
|||
|
|
@ -347,7 +347,7 @@ const UploadPage = () => {
|
|||
};
|
||||
|
||||
return (
|
||||
<Wrapper className="pb-10 lg:max-w-[70%] xl:max-w-[65%]">
|
||||
<Wrapper className="pb-10 lg:max-w-[65%] xl:max-w-[60%]">
|
||||
<OverlayLoader
|
||||
show={loadingState.isLoading}
|
||||
text={loadingState.message}
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
|
||||
body {
|
||||
font-family: var(--font-inter), var(--font-unbounded), var(--font-syne), sans-serif;
|
||||
font-family: var(--font-syne), var(--font-unbounded), var(--font-inter), sans-serif;
|
||||
}
|
||||
|
||||
@layer utilities {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue