| 12345678910111213141516171819202122232425262728293031 |
- @use '~/styles/bootstrap/init' as bs;
- $author-font-size: 12px;
- $date-font-size: 11px;
- .grw-author-info :global {
- li {
- font-size: $author-font-size;
- list-style: none;
- }
- .text-date {
- font-size: $date-font-size;
- }
- .picture {
- width: 22px;
- height: 22px;
- border: 1px solid bs.$gray-300;
- &.picture-xs {
- width: 14px;
- height: 14px;
- }
- }
- }
- .grw-author-info-skelton :global {
- width: 139px;
- height: calc((#{$author-font-size} + #{$date-font-size}) * #{bs.$line-height-base});
- }
|