mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
Fixed: Alignment of dates in Release Date Tooltip
This commit is contained in:
parent
ac79c51196
commit
6be1ae0120
@ -1,3 +1,6 @@
|
||||
.dateIcon {
|
||||
padding-right: 15px;
|
||||
display: inline-block;
|
||||
padding-right: 10px;
|
||||
width: 30px;
|
||||
text-align: center;
|
||||
}
|
||||
|
@ -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>
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user