AuthorInfo.module.scss 531 B

12345678910111213141516171819202122232425262728293031
  1. @use '~/styles/bootstrap/init' as bs;
  2. $author-font-size: 12px;
  3. $date-font-size: 11px;
  4. .grw-author-info :global {
  5. li {
  6. font-size: $author-font-size;
  7. list-style: none;
  8. }
  9. .text-date {
  10. font-size: $date-font-size;
  11. }
  12. .picture {
  13. width: 22px;
  14. height: 22px;
  15. border: 1px solid bs.$gray-300;
  16. &.picture-xs {
  17. width: 14px;
  18. height: 14px;
  19. }
  20. }
  21. }
  22. .grw-author-info-skelton :global {
  23. width: 139px;
  24. height: calc((#{$author-font-size} + #{$date-font-size}) * #{bs.$line-height-base});
  25. }