-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
403 additions
and
42 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,60 @@ | ||
.mobile-join-wrap { | ||
width: 100%; | ||
height: 100vh; | ||
display: flex; | ||
flex-direction: column; | ||
background-color: #15151D; | ||
|
||
.header-box { | ||
display: flex; | ||
align-items: center; | ||
justify-content: space-around; | ||
|
||
.muxi-box, | ||
.muxi101-box { | ||
font-size: larger; | ||
color: #fff; | ||
padding: 8px 16px; | ||
font-weight: bold; | ||
} | ||
|
||
.muxi-box:hover, | ||
.muxi101-box:hover { | ||
color: #999; | ||
} | ||
|
||
.muxi-logo-box { | ||
width: 20vw; | ||
|
||
img { | ||
width: 100%; | ||
} | ||
} | ||
} | ||
|
||
.join-pic-box { | ||
width: 100%; | ||
margin-top: 5vh; | ||
|
||
img { | ||
width: 100%; | ||
} | ||
} | ||
|
||
.join-btn-box { | ||
margin-top: 10vh; | ||
width: 100%; | ||
display: flex; | ||
justify-content: center; | ||
|
||
.join-btn { | ||
text-align: center; | ||
font-size: x-large; | ||
padding: 12px 72px; | ||
font-weight: bold; | ||
background-color: #FFC93F; | ||
box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.1); | ||
border-radius: 20px 20px 20px 20px; | ||
} | ||
} | ||
} |
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,35 @@ | ||
import './MobileJoin.less'; | ||
import muxistudio from '../../assets/muxistudio.png'; | ||
import join from '../../assets/join.png'; | ||
import { useNavigate } from 'react-router-dom'; | ||
|
||
export default function MobileJoin() { | ||
const navigate = useNavigate(); | ||
|
||
return ( | ||
<div className="mobile-join-wrap"> | ||
<div className="header-box"> | ||
<div className="muxi-box" onClick={() => window.open('https://m.muxi-tech.xyz/')}> | ||
木犀官网 | ||
</div> | ||
<div className="muxi-logo-box"> | ||
<img src={muxistudio} alt="" /> | ||
</div> | ||
<div | ||
className="muxi101-box" | ||
onClick={() => window.open('https://muxi-studio.github.io/101/')} | ||
> | ||
木犀101 | ||
</div> | ||
</div> | ||
<div className="join-pic-box"> | ||
<img src={join} alt="" /> | ||
</div> | ||
<div className="join-btn-box"> | ||
<span className="join-btn" onClick={() => navigate('/login')}> | ||
加入我们 | ||
</span> | ||
</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
Oops, something went wrong.