Skip to content

Commit

Permalink
make pride corner smaller on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
ezrizhu committed Jun 6, 2024
1 parent e7d50d5 commit 17054f0
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,6 @@ ul {
position: absolute;
top: 0;
right: 0;
width: 120px;
transform-origin: 100% 0%;
transition: transform .5s cubic-bezier(.32,1.63,.41,1.01);
z-index: 8008135;
Expand All @@ -185,8 +184,18 @@ ul {
pointer-events: all;
}
#prideflag img {
width: unset;
width: 15vw;
height: unset;
border-radius: unset;
margin-right: unset;
}
@media screen and (min-width:768px) {
#prideflag img {
width: 10vw;
}
}
@media screen and (min-width:1920px) {
#prideflag img {
width: 5vw;
}
}

0 comments on commit 17054f0

Please sign in to comment.