Skip to content

Commit

Permalink
Use pixels instead of em to position brand
Browse files Browse the repository at this point in the history
  • Loading branch information
cesardlinx committed Oct 2, 2023
1 parent ff94524 commit d735dc3
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions src/style/styles.less
Original file line number Diff line number Diff line change
Expand Up @@ -2052,7 +2052,7 @@ input {
opacity: 1;
z-index: 1;
position: relative;
top: 12em;
top: 105px;
transition: opacity 300ms cubic-bezier(.39,.58,.57,1);;

div {
Expand All @@ -2070,16 +2070,17 @@ input {
}
}

@media only screen and (max-width: 1095px) {
@media only screen and (max-width: 744px) {
#brandlogo div {
width: 300px;
background-size: 300px;
width: 400px;
background-size: 400px;
}
}

@media only screen and (max-width: 759px) {
#brandlogo {
top: 17em;
@media only screen and (max-width: 597px) {
#brandlogo div {
width: 300px;
background-size: 300px;
}
}

Expand Down

0 comments on commit d735dc3

Please sign in to comment.