🧹 Cleaning up dashboard typography
This commit is contained in:
@@ -97,7 +97,7 @@ services:
|
|||||||
|
|
||||||
mongodb:
|
mongodb:
|
||||||
image: 'bitnami/mongodb:latest'
|
image: 'bitnami/mongodb:latest'
|
||||||
container_name: db
|
container_name: database
|
||||||
networks:
|
networks:
|
||||||
- proxy
|
- proxy
|
||||||
ports:
|
ports:
|
||||||
@@ -118,6 +118,10 @@ services:
|
|||||||
- "80:80"
|
- "80:80"
|
||||||
volumes:
|
volumes:
|
||||||
- ./proxy.conf:/etc/nginx/conf.d/default.conf
|
- ./proxy.conf:/etc/nginx/conf.d/default.conf
|
||||||
|
|
||||||
|
rabbitmq:
|
||||||
|
image: 'bitnami/rabbitmq:latest'
|
||||||
|
container_name: jobs_queue
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
proxy:
|
proxy:
|
||||||
|
|||||||
@@ -25,7 +25,9 @@ export const RecentlyImported = ({
|
|||||||
};
|
};
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<h2 className="subtitle">Recently Imported</h2>
|
<div className="content">
|
||||||
|
<h4 className="subtitle">Recently Imported</h4>
|
||||||
|
</div>
|
||||||
<Masonry
|
<Masonry
|
||||||
breakpointCols={breakpointColumnsObj}
|
breakpointCols={breakpointColumnsObj}
|
||||||
className="recent-comics-container"
|
className="recent-comics-container"
|
||||||
|
|||||||
@@ -20,9 +20,10 @@ export const VolumeGroups = (): ReactElement => {
|
|||||||
(state: RootState) => state.fileOps.comicVolumeGroups,
|
(state: RootState) => state.fileOps.comicVolumeGroups,
|
||||||
);
|
);
|
||||||
return (
|
return (
|
||||||
<section className="volumes-container">
|
<section className="volumes-container mt-4">
|
||||||
<div className="content">
|
<div className="content">
|
||||||
<div className="subtitle">Volumes</div>
|
<p className="title is-4">Volumes</p>
|
||||||
|
<p className="subtitle is-7">Based on ComicVine Volume information</p>
|
||||||
</div>
|
</div>
|
||||||
<Masonry
|
<Masonry
|
||||||
breakpointCols={breakpointColumnsObj}
|
breakpointCols={breakpointColumnsObj}
|
||||||
|
|||||||
Reference in New Issue
Block a user