1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-11 12:02:35 +02:00

Fixed: Alignment of dates in Release Date Tooltip

This commit is contained in:
Qstick 2020-07-09 22:06:07 -04:00
parent ac79c51196
commit 6be1ae0120
2 changed files with 10 additions and 7 deletions

View File

@ -1,3 +1,6 @@
.dateIcon {
padding-right: 15px;
display: inline-block;
padding-right: 10px;
width: 30px;
text-align: center;
}

View File

@ -20,33 +20,33 @@ function MovieReleaseDates(props) {
{
!!inCinemas &&
<div >
<span className={styles.dateIcon}>
<div className={styles.dateIcon}>
<Icon
name={icons.IN_CINEMAS}
/>
</span>
</div>
{getRelativeDate(inCinemas, shortDateFormat, showRelativeDates, { timeFormat, timeForToday: false })}
</div>
}
{
!!digitalRelease &&
<div >
<span className={styles.dateIcon}>
<div className={styles.dateIcon}>
<Icon
name={icons.MOVIE_FILE}
/>
</span>
</div>
{getRelativeDate(digitalRelease, shortDateFormat, showRelativeDates, { timeFormat, timeForToday: false })}
</div>
}
{
!!physicalRelease &&
<div >
<span className={styles.dateIcon}>
<div className={styles.dateIcon}>
<Icon
name={icons.DISC}
/>
</span>
</div>
{getRelativeDate(physicalRelease, shortDateFormat, showRelativeDates, { timeFormat, timeForToday: false })}
</div>
}