Updates button styles for replies and views

This commit is contained in:
Josh Perez 2022-05-06 12:17:33 -04:00 committed by GitHub
parent 300cee2e24
commit 85df5cf1d8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 93 additions and 34 deletions

View file

@ -123,6 +123,35 @@
color: $color-ultramarine;
}
}
&__arrow {
display: flex;
align-items: center;
&::before {
content: '';
height: 20px;
margin-right: 12px;
width: 20px;
@include color-svg(
'../images/icons/v2/reply-outline-24.svg',
$color-white
);
}
}
&__chevron::after {
content: '';
display: inline-block;
height: 20px;
margin-left: 12px;
vertical-align: middle;
width: 20px;
@include color-svg(
'../images/icons/v2/chevron-right-24.svg',
$color-white
);
}
}
&__progress {