Skip to content

Commit

Permalink
style: add reponsive styling for medium devices
Browse files Browse the repository at this point in the history
  • Loading branch information
rasan3-1416 committed Oct 13, 2023
1 parent c855d7a commit 3d18dd9
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion assets/css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -657,6 +657,23 @@ img {
}

/* For medium devices */

@media screen and (min-width: 576px) {
/* ========== About ========== */
.about__container {
grid-template-columns: 380px;
justify-content: center;
}
/* ========== Footer ========== */
.footer__data {
grid-template-columns: repeat(3, max-content);
column-gap: 3rem;
}
.footer__group {
grid-column: initial;
}
.footer__social {
justify-content: initial;
}
}

/* For large devices */

0 comments on commit 3d18dd9

Please sign in to comment.