Fix user liquid tag text color (#2849)

This commit fixes the styles for the user liquid tag to match the
current theme.
This commit is contained in:
Kobe Raypole 2019-05-16 08:10:16 -04:00 committed by Ben Halpern
parent 2837e5430a
commit 2c6cfb2224

View file

@ -1,7 +1,8 @@
@import 'variables';
@import 'mixins';
.ltag__user__link {
color: #111111 !important;
color: $black;
color: var(--theme-color, $black);
&:active {
opacity: 0.7;
}