Skip to content

Commit

Permalink
feat(pillrow): add style override for author page
Browse files Browse the repository at this point in the history
  • Loading branch information
mlbrgl committed Apr 12, 2024
1 parent 05b153f commit 72a5238
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions site/gdocs/pages/Author.scss
Original file line number Diff line number Diff line change
Expand Up @@ -136,3 +136,38 @@
}
}
}

.author-work {
.article-block__pill-row {
background-color: $blue-95;

.article-block__pill-row-interior {
flex-direction: column;
padding: 0 0 24px;
}

p {
color: $blue-40;
line-height: normal;
margin-bottom: 16px;
white-space: normal; // reset default nowrap for heading (useful on mobile)
}

ul {
@include md-up {
flex-wrap: wrap;
row-gap: 8px;
}
}

.article-block__pill {
a {
color: $white;
background-color: $blue-65;
&:hover {
background-color: $blue-90;
}
}
}
}
}

0 comments on commit 72a5238

Please sign in to comment.