mirror of
https://github.com/Radarr/Radarr
synced 2026-04-19 19:51:42 +02:00
Fixed: Alignment of Certification and Runtime on Add Movie
This commit is contained in:
parent
9938737cd7
commit
c47934c5ca
2 changed files with 14 additions and 8 deletions
|
|
@ -92,6 +92,19 @@
|
|||
position: relative;
|
||||
}
|
||||
|
||||
.certification {
|
||||
margin-left: 2px;
|
||||
padding: 0 5px;
|
||||
border: 1px solid;
|
||||
border-radius: 5px;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.runtime {
|
||||
margin-left: 8px;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.statusContainer {
|
||||
margin-right: 22px;
|
||||
font-weight: bold;
|
||||
|
|
@ -103,10 +116,3 @@
|
|||
overflow: hidden;
|
||||
}
|
||||
}
|
||||
|
||||
.certification {
|
||||
margin-right: 5px;
|
||||
padding: 0 5px;
|
||||
border: 1px solid;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -174,7 +174,7 @@ class AddNewMovieSearchResult extends Component {
|
|||
|
||||
{
|
||||
!!runtime &&
|
||||
<span>
|
||||
<span className={styles.runtime}>
|
||||
{formatRuntime(runtime, movieRuntimeFormat)}
|
||||
</span>
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue