make footer stand out less

This commit is contained in:
keyan 2021-06-03 21:55:23 -04:00
parent a837675428
commit c62aa0a1a7
2 changed files with 13 additions and 2 deletions

View File

@ -2,6 +2,7 @@ import { useQuery } from '@apollo/client'
import gql from 'graphql-tag'
import { Container } from 'react-bootstrap'
import { CopyInput } from './form'
import styles from './footer.module.css'
export default function Footer () {
const query = gql`
@ -17,8 +18,7 @@ export default function Footer () {
{data &&
<Container>
<div
className='d-flex align-items-center text-small my-3 mx-auto w-100'
style={{ maxWidth: '500px' }}
className={`text-small my-3 mx-auto ${styles.connect}`}
>
<span className='nav-item text-muted mr-2'>connect:</span>
<CopyInput

View File

@ -0,0 +1,11 @@
.connect {
display: flex;
align-items: center;
width: 100%;
max-width: 500px;
opacity: 0.7;
}
.connect:hover {
opacity: 1;
}