Some ``bugs` fixed + added `footer links``

This commit is contained in:
biskwt 2022-11-17 03:22:21 +01:00
parent dc8c072af6
commit d2949e9e7a
4 changed files with 21 additions and 9 deletions

View file

@ -36,7 +36,7 @@
"check-format": "npx prettier --check",
"write-format": "npx prettier --write",
"predeploy": "npm build",
"deploy": "gh-pages -d build"
"deploy": "gh-pages -d build -b master"
},
"eslintConfig": {
"extends": [

View file

@ -28,14 +28,14 @@ return (
<Column>
<Heading> </Heading>
<FooterLink href="https://github.com/akionii">Staff</FooterLink>
<FooterLink href="https://akionii.github.io/Miruro/pages/ToS.html">Terms</FooterLink>
<FooterLink href="https://akionii.github.io/Miruro/pages/Privacy.html">Privacy</FooterLink>
<FooterLink href="https://akionii.github.io/Miruro/docs/pages/ToS.html">Terms</FooterLink>
<FooterLink href="https://akionii.github.io/Miruro/docs/pages/Privacy.html">Privacy</FooterLink>
</Column>
<Column>
<Heading> </Heading>
<FooterLink href="https://discord.gg/muuZnh9y">Discord</FooterLink>
<FooterLink href="#">We're Hiring!</FooterLink>
<FooterLink href="">Support</FooterLink>
<FooterLink href="https://www.patreon.com/akionii">Support</FooterLink>
</Column>
</Row>
</Container>

View file

@ -210,15 +210,23 @@ const Wrapper = styled.div`
border: none;
color: #fff;
padding: 0.5rem;
width: 100%;
width: 80px;
border-bottom-right-radius: 0.5rem;
background-color: rgba(0, 0, 0, .8);
background-color: rgba(10, 10, 10, 0.75);
transition: 0.3s;
:hover {
background-color: rgba(10, 10, 10, 1);
}
}
.removeButton {
border-top-left-radius: 0.5rem;
border-bottom-right-radius: 0rem;
&.confirm {
background-color: rgba(150, 0, 0, .8);
background-color: rgba(200, 0, 0, 0.75);
:hover {
background-color: rgba(200, 0, 0, 1);
}
}
}
img {

View file

@ -41,7 +41,7 @@ function Nav() {
}
}}
/>
<FiSearch color="#fff" />
<FiSearch className="FiSearch" color="#fff" />
</div>
<div className="nav-links">
@ -160,9 +160,13 @@ const NavBar = styled.nav`
border-radius: 10px;
margin-left: 1rem;
FiSearch {
.FiSearch {
font-size: 1rem;
color: #fff;
// transform: scale(2);
// padding: 4px;
// background: rgb(10, 10, 10);
// border-radius: 5px;
}
@media only screen and (max-width: 600px) {