-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #110 from sivicstudio/update-flow
feat: update user flow from start of game and add mobile responsive warning
- Loading branch information
Showing
3 changed files
with
139 additions
and
97 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
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,12 @@ | ||
import "../styles/MobileResponsiveWarning.scss"; | ||
|
||
const MobileResponsiveWarning = () => { | ||
return ( | ||
<div className="mobile-responsive-warning"> | ||
StarkLudo is not yet responsive on mobile devices. Please view on a | ||
Desktop screen instead. | ||
</div> | ||
); | ||
}; | ||
|
||
export default MobileResponsiveWarning; |
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,9 @@ | ||
.mobile-responsive-warning { | ||
color: white; | ||
width: 100vw; | ||
height: 100vh; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
padding: 10px | ||
} |