mirror of
https://github.com/Radarr/Radarr
synced 2024-12-30 11:55:18 +00:00
Fixed: Alignment of dates in Release Date Tooltip
This commit is contained in:
parent
ac79c51196
commit
6be1ae0120
2 changed files with 10 additions and 7 deletions
|
@ -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 a new issue