AuthorInfo.module.scss 517 B

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