Skip to content

Commit

Permalink
Merge pull request #323 from smartlogic/fix-responsiveness-pillar-cards
Browse files Browse the repository at this point in the history
Fixed responsiveness of pillar cards on landing page
  • Loading branch information
micaelacunhadev authored Sep 3, 2024
2 parents f205e73 + 97765e8 commit 5b0b895
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion _sass/components/pillars.scss
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@
font-size: 28px;
}

@include tablet{
font-size: 26px;
}

@include phone{
font-size: 22px;
}
Expand All @@ -29,10 +33,14 @@
@media (max-width: 1024px) {
font-size: 28px;
}

@include tablet{
font-size: 26px;
}

@include phone{
font-size: 22px;
}
}
}
}

Expand All @@ -53,12 +61,21 @@
gap: 24px;
padding: 24px;
height: 250px;
flex: 1;
>p {
font-size: 28px;
font-weight: 450;
color: $black;
text-align: center;

@media (max-width: 1024px) {
font-size: 24px;
}

@include tablet{
font-size: 22px;
}

@include phone{
font-size: 18px;
}
Expand Down

0 comments on commit 5b0b895

Please sign in to comment.