Skip to content

Commit

Permalink
Style : Converted % into rem
Browse files Browse the repository at this point in the history
  • Loading branch information
joyguptaa committed Feb 5, 2024
1 parent 3bd5bb6 commit f924975
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions app/styles/tasks.css
Original file line number Diff line number Diff line change
Expand Up @@ -183,16 +183,21 @@
align-items: center;
}
.task-details__title-container a {
max-width: 66%;
max-width: 18.5rem;
}
@media screen and (min-width: 900px) {
.task-details__title-container a {
max-width: 66%;
max-width: 18.3rem;
}
}
@media screen and (max-width: 900px) {
@media screen and ((max-width: 900px) and (min-width: 720px)) {
.task-details__title-container a {
max-width: 50%;
max-width: 18.3rem;
}
}
@media screen and (max-width: 720px) {
.task-details__title-container a {
max-width: 100%;
}
}

Expand Down

0 comments on commit f924975

Please sign in to comment.