ul/li @media + padding fix
This commit is contained in:
parent
d1032633a4
commit
e8699bf583
|
@ -1,6 +1,4 @@
|
|||
import React, {useState} from 'react'
|
||||
import {HiOutlineMenuAlt4} from 'react-icons/hi'
|
||||
|
||||
import './NavbarStyles.css'
|
||||
|
||||
function Navbar() {
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
import "./CtoStyles.css";
|
||||
import "./CTOStyles.css";
|
||||
---
|
||||
|
||||
<div class="cto-container w-full transition-[0.5s];">
|
||||
|
|
|
@ -12,9 +12,7 @@ import "./FooterStyles.css";
|
|||
>
|
||||
<span class="footer-email"></span>contact@lumeweb.com
|
||||
</li><div class="footer-span">
|
||||
<span class="footer-h2"
|
||||
>Freedom, privacy, <br />ownership.</span
|
||||
>
|
||||
<span class="footer-h2">Freedom, privacy, ownership.</span>
|
||||
</div>
|
||||
</ul>
|
||||
</h6>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
.footer-li {
|
||||
font-family: var(--font-family-jaldi);
|
||||
margin-inline: 5px;
|
||||
margin-inline: 0.5vw;
|
||||
list-style-type: none;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
@ -19,12 +19,26 @@
|
|||
grid-template-columns: repeat(3, 1fr);
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.footer-li {
|
||||
margin-inline: 0.7vw;
|
||||
}
|
||||
}
|
||||
|
||||
@media (width >=900px) {
|
||||
.footer-cards {
|
||||
grid-template-columns: repeat(6, 1fr);
|
||||
}
|
||||
|
||||
.footer-li {
|
||||
margin-inline: 0.5vw;
|
||||
}
|
||||
}
|
||||
|
||||
@media (width <=600px) {
|
||||
.footer-li {
|
||||
margin-inline: 1vw;
|
||||
}
|
||||
}
|
||||
|
||||
.footer-logo {
|
||||
|
|
Loading…
Reference in New Issue