diff --git a/src/client/assets/scss/App.scss b/src/client/assets/scss/App.scss
index e711c72..130034a 100644
--- a/src/client/assets/scss/App.scss
+++ b/src/client/assets/scss/App.scss
@@ -215,6 +215,9 @@ pre {
}
.is-horizontal {
+ border: 1px solid #CCC;
+ border-radius: 0.25em;
+
flex-direction: row;
display: flex;
flex-basis: 50ex;
@@ -225,7 +228,7 @@ pre {
.card-image {
align-self: center;
.image {
- max-width: 80px;
+ max-width: 50px;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
border-top-left-radius: 0.25em;
diff --git a/src/client/components/Carda.tsx b/src/client/components/Carda.tsx
index 898aec8..4dabb3d 100644
--- a/src/client/components/Carda.tsx
+++ b/src/client/components/Carda.tsx
@@ -17,7 +17,24 @@ interface ICardProps {
const renderCard = (props): ReactElement => {
switch (props.orientation) {
case "horizontal":
- return <>horiztonal>;
+ return (
+
+
+
+
+

+
+ {props.hasDetails && (
+
{props.children}
+ )}
+
+
+
+ );
case "vertical":
return (
diff --git a/src/client/components/Dashboard/RecentlyImported.tsx b/src/client/components/Dashboard/RecentlyImported.tsx
index 3c909a1..6e2ba95 100644
--- a/src/client/components/Dashboard/RecentlyImported.tsx
+++ b/src/client/components/Dashboard/RecentlyImported.tsx
@@ -61,53 +61,65 @@ export const RecentlyImported = ({
);
return (
-
-
- {isComicBookMetadataAvailable && (
-
-
-
- )}
- {/* Raw file presence */}
- {isNil(rawFileDetails) && (
-
-
-
- )}
- {/* ComicInfo.xml presence */}
- {!isNil(sourcedMetadata.comicInfo) &&
- !isEmpty(sourcedMetadata.comicInfo) && (
-
-
+ <>
+
+
+ {isComicBookMetadataAvailable && (
+
+
)}
- {/* Issue type */}
- {isComicBookMetadataAvailable &&
- !isNil(
- detectIssueTypes(
- sourcedMetadata.comicvine.volumeInformation.description,
- ),
- ) ? (
-
- {
- detectIssueTypes(
- sourcedMetadata.comicvine.volumeInformation
- .description,
- ).displayName
- }
-
- ) : null}
-
-
+ {/* Raw file presence */}
+ {isNil(rawFileDetails) && (
+
+
+
+ )}
+ {/* ComicInfo.xml presence */}
+ {!isNil(sourcedMetadata.comicInfo) &&
+ !isEmpty(sourcedMetadata.comicInfo) && (
+
+
+
+ )}
+ {/* Issue type */}
+ {isComicBookMetadataAvailable &&
+ !isNil(
+ detectIssueTypes(
+ sourcedMetadata.comicvine.volumeInformation.description,
+ ),
+ ) ? (
+
+ {
+ detectIssueTypes(
+ sourcedMetadata.comicvine.volumeInformation
+ .description,
+ ).displayName
+ }
+
+ ) : null}
+
+
+ {/* original reference */}
+
+
+ asdasd
+
+
+ >
);
},
)}