Skip to content

Commit

Permalink
Merge c638d9e into 78be38e
Browse files Browse the repository at this point in the history
  • Loading branch information
awaismbajwa committed Nov 8, 2020
2 parents 78be38e + c638d9e commit 92aae34
Showing 1 changed file with 15 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

.link_item {
width: 45%;
max-width: 45%;
vertical-align: top;
margin: 2% auto;
background-color: #fff;
Expand All @@ -21,7 +20,6 @@

.link_item.layout_center {
width: 29%;
max-width: 29%;
}

.link_item:hover {
Expand Down Expand Up @@ -86,3 +84,18 @@
color: #fff;
text-decoration: underline;
}

@media only screen and (max-width: 600px) {
.link_item.layout_center {
width: 45%;
}
}

@media only screen and (max-width: 350px) {
.link_item {
width: 85%;
}
.link_item.layout_center {
width: 85%;
}
}

0 comments on commit 92aae34

Please sign in to comment.