_author-bio.scss 737 B

123456789101112131415161718
  1. .author-link {
  2. font-size: var(--global--font-size-xs);
  3. position: relative;
  4. &:after {
  5. background-image: url("data:image/svg+xml,%3Csvg class='svg-icon' width='24' height='24' aria-hidden='true' role='img' focusable='false' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.96954 10.2804L11.9999 15.3107L17.0302 10.2804L15.9695 9.21973L11.9999 13.1894L8.0302 9.21973L6.96954 10.2804Z' fill='%23DB0042'%3E%3C/path%3E%3C/svg%3E");
  6. background-repeat: no-repeat;
  7. background-position: center center;
  8. background-size: 14px 14px;
  9. content: '';
  10. position: absolute;
  11. bottom: 0;
  12. right: -14px;
  13. width: 14px;
  14. height: 14px;
  15. transform: rotate(-90deg);
  16. }
  17. }