Skip to content

Commit

Permalink
fix order history for iPad mini
Browse files Browse the repository at this point in the history
  • Loading branch information
c4coderandcreator committed Nov 8, 2023
1 parent 1924631 commit ec1f269
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions css/landing.css
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,23 @@ img {
padding-bottom: 1rem;
flex-wrap: nowrap;
}

@media screen and (max-width: 868px){
.nav__menu {
position: fixed;
top: -100%;
left: 0;
right: 0;
width: 90%;
margin: -0.5rem auto;
padding: 2.5rem 0 0;
text-align: center;
background-color: var(--body-color);
transition: .4s;
box-shadow: 0 0 4px rgba(0, 0, 0, .1);
border-radius: 2rem;
z-index: var(--z-fixed);
}
}
@media screen and (max-width: 768px) {
.nav__menu {
position: fixed;
Expand Down Expand Up @@ -331,7 +347,7 @@ img {

/*========== BUTTONS ==========*/
.landing-button {
padding: 1em 2.5em;
padding: 1em 2em;
border: none;
border-radius: 30px;
font-weight: 700;
Expand Down

0 comments on commit ec1f269

Please sign in to comment.