feat(frontend): add crew related movies/shows to person details page

This commit is contained in:
sct
2020-12-22 00:12:50 +09:00
parent 9a4da25faa
commit 12127a7763
3 changed files with 147 additions and 63 deletions

View File

@@ -7,7 +7,7 @@ body {
}
.plex-button {
@apply w-full flex justify-center py-2 px-4 border border-transparent text-sm font-medium rounded-md text-white bg-indigo-600 transition ease-in-out duration-150 text-center disabled:opacity-50;
@apply flex justify-center w-full px-4 py-2 text-sm font-medium text-center text-white transition duration-150 ease-in-out bg-indigo-600 border border-transparent rounded-md disabled:opacity-50;
background-color: #cc7b19;
}
@@ -16,7 +16,7 @@ body {
}
.titleCard {
@apply relative bg-cover rounded-lg bg-gray-800;
@apply relative bg-gray-800 bg-cover rounded-lg;
padding-bottom: 150%;
}
@@ -34,7 +34,12 @@ body {
}
.error-message {
@apply flex items-center justify-center text-center text-gray-300 relative top-0 left-0 bottom-0 right-0 h-screen flex-col;
@apply relative top-0 bottom-0 left-0 right-0 flex flex-col items-center justify-center h-screen text-center text-gray-300;
}
/* Used for animating height */
.extra-max-height {
max-height: 100rem;
}
/* Hide scrollbar for Chrome, Safari and Opera */
@@ -49,5 +54,5 @@ body {
}
code {
@apply bg-gray-800 py-1 px-2 rounded-md;
@apply px-2 py-1 bg-gray-800 rounded-md;
}