Increased vertical gap between actors, tags and movies on scene edit page.
This commit is contained in:
parent
78108296de
commit
03d56ac06a
|
@ -81,7 +81,7 @@ watch(() => props.scene, () => { newActors.value = []; });
|
|||
.actors {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: .25rem;
|
||||
gap: .35rem .25rem;
|
||||
|
||||
&.disabled {
|
||||
.actor {
|
||||
|
|
|
@ -85,7 +85,7 @@ watch(() => props.scene, () => { newMovies.value = []; });
|
|||
.movies {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: .25rem;
|
||||
gap: .35rem .25rem;
|
||||
|
||||
&.disabled {
|
||||
.movie {
|
||||
|
|
|
@ -92,7 +92,7 @@ watch(() => props.scene, () => { newTags.value = []; });
|
|||
.tags {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: .25rem;
|
||||
gap: .35rem .25rem;
|
||||
|
||||
&.disabled {
|
||||
.tag {
|
||||
|
|
Loading…
Reference in New Issue