Skip to content

Commit

Permalink
Fix arrow size and position for mobile screens
Browse files Browse the repository at this point in the history
  • Loading branch information
cihanandac committed Feb 13, 2024
1 parent 3088c84 commit 483e501
Showing 1 changed file with 9 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,9 @@
}
svg{
fill: var(--bonnefanten-primary);
@media screen and (max-width:768px){
width: 25px;
}
}
}

Expand Down Expand Up @@ -120,8 +123,8 @@
}

.left-button {
margin-top: -10px;
margin-left: 27px;
margin-top: -6px;
margin-left: -8px;
// width: 36px;
// height: 55px;
width: 62px;
Expand All @@ -131,6 +134,7 @@
opacity: 0.6 !important;

@media screen and (min-width: 768px) {
margin-left: 27px;
margin-top: 2px;
}
@media screen and (min-width: 1200px) {
Expand All @@ -143,8 +147,8 @@
}

.right-button {
margin-top: -10px;
margin-right: 27px;
margin-top: -6px;
margin-right: -8px;
// width: 36px;
// height: 55px;
width: 62px;
Expand All @@ -155,6 +159,7 @@

@media screen and (min-width: 768px) {
margin-top: 2px;
margin-right: 27px;
}

@media screen and (min-width: 1200px) {
Expand Down

0 comments on commit 483e501

Please sign in to comment.