-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
Mobile Update 1 | Patch v3.0.4
- Loading branch information
There are no files selected for viewing
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,84 @@ | ||
@import "../../index.scss"; | ||
|
||
.interface { | ||
$_thumb: $tone1; | ||
$_track: $background-color; | ||
.innerInterface { | ||
@include transition-anim; | ||
@include wight(100vw, 100vh); | ||
|
||
@include wight(100vw, 100vh); | ||
flex-direction: column; | ||
|
||
flex-direction: column; | ||
background-position: center; | ||
background-repeat: no-repeat; | ||
background-size: cover; | ||
|
||
background-position: center; | ||
background-repeat: no-repeat; | ||
background-size: cover; | ||
overflow-y: scroll; | ||
overflow-x: hidden; | ||
|
||
overflow-y: scroll; | ||
overflow-x: hidden; | ||
|
||
scroll-snap-type: unset; | ||
scroll-snap-stop: unset; | ||
scroll-snap-type: unset; | ||
scroll-snap-stop: unset; | ||
} | ||
.navBtn, | ||
.navContent { | ||
display: none; | ||
} | ||
} | ||
|
||
@media only screen and (max-width: 430px) { | ||
.interface { | ||
scroll-snap-type: y proximity; | ||
scroll-snap-stop: normal; | ||
.innerInterface { | ||
scroll-snap-type: y proximity; | ||
scroll-snap-stop: normal; | ||
} | ||
.navBtn { | ||
width: 100%; | ||
display: flex; | ||
flex-direction: row; | ||
justify-content: flex-end; | ||
position: absolute; | ||
z-index: 10000; | ||
margin-top: 10px; | ||
|
||
button { | ||
box-shadow: unset; | ||
-webkit-box-shadow: unset; | ||
-moz-box-shadow: unset; | ||
background-color: unset; | ||
} | ||
} | ||
|
||
.navContent { | ||
@include transition-anim; | ||
@include wight(100%, 100%); | ||
@include flex-center; | ||
|
||
flex-direction: column; | ||
justify-content: space-evenly; | ||
position: absolute; | ||
z-index: 9900; | ||
|
||
overflow: hidden; | ||
|
||
outline: 2px solid $tone1; | ||
background-color: #0f182c5b; | ||
|
||
.navSelections { | ||
@include wight(80%, max-content); | ||
@include flex-center; | ||
flex-direction: column; | ||
|
||
gap: 10px; | ||
|
||
button { | ||
// @include wight(100%, 100%); | ||
@include flex-center; | ||
gap: 10px; | ||
width: 100%; | ||
|
||
svg { | ||
width: 14px; | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,5 +34,10 @@ | |
&:disabled { | ||
cursor: not-allowed; | ||
background-color: $disabled; | ||
color: $tone2; | ||
|
||
svg { | ||
fill: $tone2; | ||
} | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
import { ReactComponent as Logo } from '../../../assets/svg/SlamTheDragon Logo.svg' | ||
import { ReactComponent as Twitter } from '../../../assets/svg/twitterIcon.svg' | ||
import { ReactComponent as Kofi } from '../../../assets/svg/kofiIcon.svg' | ||
import { ReactComponent as Threads } from '../../../assets/svg/threadsIcon.svg' | ||
import { ReactComponent as Instagram } from '../../../assets/svg/instagramIcon.svg' | ||
import { ReactComponent as Deviant } from '../../../assets/svg/deviantartIcon.svg' | ||
import { ReactComponent as Discord } from '../../../assets/svg/discordIcon.svg' | ||
import style from './footermobile.module.scss' | ||
|
||
|
||
export default function FooterMobile() { | ||
|
||
return ( | ||
<footer style={style}> | ||
<Logo /> | ||
<div className={style.footerHeaderLinks}> | ||
<div> | ||
<a className={style.discord} href="https://discord.gg/GSKdSPgjQb" target="_blank" rel="noreferrer"><Discord /></a> | ||
</div> | ||
<div> | ||
<a className={style.twitter} href="https://twitter.com/SlamTheDragon" target="_blank" rel="noreferrer"><Twitter /></a> | ||
</div> | ||
<div> | ||
<a className={style.kofi} href="https://ko-fi.com/slamthedragon" target="_blank" rel="noreferrer"><Kofi /></a> | ||
</div> | ||
<div> | ||
<a href="https://www.threads.net/@slamthedragon" target="_blank" rel="noreferrer"><Threads /></a> | ||
</div> | ||
<div> | ||
<a className={style.instagram} href="https://www.instagram.com/slamthedragon/" target="_blank" rel="noreferrer"><Instagram /></a> | ||
</div> | ||
<div> | ||
<a className={style.deviant} href="https://www.deviantart.com/slamdx16" target="_blank" rel="noreferrer"><Deviant /></a> | ||
</div> | ||
</div> | ||
<div className={style.footerHeader}> | ||
|
||
<div className={style.footerText}> | ||
<span style={{ display: 'flex', alignItems: 'center' }}> | ||
<a href="https://github.com/SlamTheDragon/SlamTheDragon.github.io" target="_blank" rel="noreferrer">Coded With Love <span style={{ fontSize: '7pt' }}> • </span> Powered By Github Pages</a> | ||
</span> | ||
<span> | ||
<a href="https://slamthedragon.me/service-and-agreement">Terms of Service & Commissioner Agreement</a> | ||
</span> | ||
<span> | ||
© 2023 Written By SlamTheDragon | ||
</span> | ||
</div> | ||
|
||
</div> | ||
</footer> | ||
) | ||
} |