diff --git a/src/client/assets/scss/App.scss b/src/client/assets/scss/App.scss
index 6f80d3f..2ec0ae9 100644
--- a/src/client/assets/scss/App.scss
+++ b/src/client/assets/scss/App.scss
@@ -9,7 +9,7 @@ $border-color: red;
$volume-color: #fdecd1;
$issue-color: #f2f1f9;
$size-8: 0.9rem;
-$size-9: 0.7em;
+$size-9: 0.7rem;
$flexSize: 4em;
$boxSpacing: 1em;
$colorText: #404646;
@@ -22,6 +22,21 @@ $colorText: #404646;
font-size: $size-9;
}
+.small-tag {
+ align-items: center;
+ background-color: #ddc096;
+ border-radius: 4px;
+ color: #4a4a4a;
+ display: inline-flex;
+ font-size: $size-9;
+ height: 1.5em;
+ justify-content: center;
+ line-height: 1.5;
+ padding-left: 0.55em;
+ padding-right: 0.55em;
+ white-space: nowrap;
+}
+
// global style overrides
pre {
@@ -245,22 +260,12 @@ pre {
.card-content {
align-self: top;
flex: 1;
- padding-left: 1em;
- padding-top: 0.5em;
+ padding-left: 0.7em;
+ padding-top: 0.4em;
padding-bottom: 0em;
- .name {
- font-size: 0.85em;
- }
- ul {
- li.status {
- margin-top: 10px;
- }
- }
- }
- .is-divider {
- margin-top: 1.5rem;
- margin-bottom: 1rem;
+
}
+
}
}
diff --git a/src/client/components/ComicDetail.tsx b/src/client/components/ComicDetail.tsx
index 80623ca..7761ac7 100644
--- a/src/client/components/ComicDetail.tsx
+++ b/src/client/components/ComicDetail.tsx
@@ -9,11 +9,7 @@ import { useDispatch, useSelector } from "react-redux";
import { useParams } from "react-router-dom";
import Card from "./Carda";
import { ComicVineMatchPanel } from "./ComicDetail/ComicVineMatchPanel";
-import { ArchiveOperations } from "./ComicDetail/Tabs/ArchiveOperations";
-import { ComicInfoXML } from "./ComicDetail/Tabs/ComicInfoXML";
-import AcquisitionPanel from "./ComicDetail/AcquisitionPanel";
-import DownloadsPanel from "./ComicDetail/DownloadsPanel";
-import { VolumeInformation } from "./ComicDetail/Tabs/VolumeInformation";
+
import { RawFileDetails } from "./ComicDetail/RawFileDetails";
import TabControls from "./ComicDetail/TabControls";
@@ -178,86 +174,6 @@ export const ComicDetail = ({}: ComicDetailProps): ReactElement => {
});
}
- // Tab content and header details
- const tabGroup = [
- {
- id: 1,
- name: "Volume Information",
- icon: ,
- content: isComicBookMetadataAvailable ? (
-