_author.scss 554 B

12345678910111213141516171819202122232425262728293031323334
  1. .author {
  2. display: flex;
  3. align-items: center;
  4. gap: 12px;
  5. border-radius: 8px;
  6. &__img {
  7. flex-shrink: 0;
  8. width: 40px;
  9. height: 40px;
  10. border-radius: 50%;
  11. overflow: hidden;
  12. img {
  13. width: 100%;
  14. height: 100%;
  15. object-fit: cover;
  16. }
  17. }
  18. &__info {
  19. display: flex;
  20. flex-direction: column;
  21. gap: 2px;
  22. }
  23. &__name {
  24. font-size: 14px;
  25. font-weight: 600;
  26. }
  27. &__date {
  28. font-size: 12px;
  29. }
  30. }