Skip to content

Commit

Permalink
Merge pull request #588 from Studio-Yandex-Practicum/feature/festival…
Browse files Browse the repository at this point in the history
…-event-time-zone

Feature/festival event time zone
  • Loading branch information
AntonZelinsky authored Sep 22, 2024
2 parents 866b8e4 + e933f8d commit 2e9c48c
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/components/event-card/event-card.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -113,9 +113,9 @@

.timeZone {
@mixin text;
@mixin textMedium;
@mixin textSmall;

margin-left: 5px;
line-height: 30px;
line-height: 1;
vertical-align: super;
}
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,7 @@
@mixin textMedium;

margin-left: 5px;
line-height: 30px;
font-weight: normal;
line-height: 1;
vertical-align: super;
}
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,13 @@
min-width: 240px;
}
}

.timeZone {
@mixin text;
@mixin textLarge;

margin-left: 5px;
font-weight: normal;
line-height: 1;
vertical-align: super;
}
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ export const PerformanceEventListItem: FC<PerformanceEventListProps> = (props) =
{date && (
<time className={cx('date')}>
{date}
<span className={cx('timeZone')}>
мск
</span>
</time>
)}
{actionText && actionUrl && (
Expand Down

0 comments on commit 2e9c48c

Please sign in to comment.