-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create Loading Screen and Halfscreen (#131)
* create loading screen * implement halfscreen * make necessary changes for half and loading screens
- Loading branch information
Showing
7 changed files
with
222 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
export default function HalfScreen() { | ||
return ( | ||
<div className="flex flex-col bg-custom-background w-full h-[20%] justify-center items-center sm:w-1/2 sm:h-full"> | ||
<div className="flex flex-row relative w-full h-[40%] justify-center sm:w-[17%] sm:h-[13%] sm:mb-[5%]"> | ||
<img | ||
src="/MBBLogo.svg" | ||
className="shrink-0 stroke-[2.1px] object-contain sm:stroke-[3px]" | ||
></img> | ||
</div> | ||
<div className="hidden sm:flex flex-col w-full h-[10%] justify-center shrink-0"> | ||
<p className="text-white text-center font-opensans text-3xl font-bold tracking-wide uppercase sm:text-4xl"> | ||
Motherhood <br /> Beyond bars | ||
</p> | ||
</div> | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
export default function LoadingScreen() { | ||
return ( | ||
<div className="flex flex-col bg-custom-background w-full h-screen justify-center items-center"> | ||
<div className="flex flex-row relative w-full h-[10%] justify-center mb-[10%] sm:w-[17%] sm:h-[13%] sm:mb-[5%]"> | ||
<img | ||
src="/MBBLogo.svg" | ||
className="shrink-0 stroke-[2.1px] object-contain sm:stroke-[3px]" | ||
></img> | ||
</div> | ||
<div className="flex flex-col w-full h-[10%] justify-center shrink-0"> | ||
<p className="text-white text-center font-opensans text-3xl font-bold tracking-wide uppercase sm:text-4xl"> | ||
Motherhood <br /> Beyond bars | ||
</p> | ||
</div> | ||
</div> | ||
); | ||
} |
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters