soapbox/app/styles/components/reply-mentions.scss

24 lines
329 B
SCSS
Raw Normal View History

2022-01-04 20:06:08 +00:00
.reply-mentions {
2022-03-21 18:09:01 +00:00
@apply text-gray-500 mb-1 text-sm;
2022-01-04 20:06:08 +00:00
2022-03-21 18:09:01 +00:00
&__account {
@apply text-primary-600 no-underline;
2022-01-04 20:06:08 +00:00
&:hover {
2022-03-21 18:09:01 +00:00
@apply underline text-primary-800;
2022-01-04 20:06:08 +00:00
}
}
}
.status__wrapper,
2022-03-21 18:09:01 +00:00
.detailed-status {
2022-01-04 20:06:08 +00:00
.reply-mentions {
display: block;
margin: 4px 0 0 0;
span {
cursor: pointer;
}
2022-01-04 20:06:08 +00:00
}
}