| 12345678910111213141516171819202122232425262728293031323334 |
- .author {
- display: flex;
- align-items: center;
- gap: 12px;
- border-radius: 8px;
- &__img {
- flex-shrink: 0;
- width: 40px;
- height: 40px;
- border-radius: 50%;
- overflow: hidden;
- img {
- width: 100%;
- height: 100%;
- object-fit: cover;
- }
- }
- &__info {
- display: flex;
- flex-direction: column;
- gap: 2px;
- }
- &__name {
- font-size: 14px;
- font-weight: 600;
- }
- &__date {
- font-size: 12px;
- }
- }
|