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