diff --git a/frontend/src/components/InstanceView.jsx b/frontend/src/components/InstanceView.jsx index e17bf9f..db4850e 100644 --- a/frontend/src/components/InstanceView.jsx +++ b/frontend/src/components/InstanceView.jsx @@ -59,7 +59,7 @@ export const InstanceView = ({ templateName, objectID, endpoint }) => { return (
setIsHovering(true)} diff --git a/frontend/src/index.css b/frontend/src/index.css index 76ac967..ef1d18a 100644 --- a/frontend/src/index.css +++ b/frontend/src/index.css @@ -26,7 +26,6 @@ body { display: flex; place-items: center; min-width: 320px; - min-height: 100vh; @apply bg-custom-light dark:bg-custom-dark-1; } diff --git a/frontend/src/views/TemplateView.jsx b/frontend/src/views/TemplateView.jsx index 6e9be88..12c24ad 100644 --- a/frontend/src/views/TemplateView.jsx +++ b/frontend/src/views/TemplateView.jsx @@ -29,7 +29,8 @@ export const TemplateView = ({ endpoint }) => { }, [isSmallScreen]); return ( -
+
+
{isSmallScreen && (
@@ -49,7 +50,10 @@ export const TemplateView = ({ endpoint }) => { > -
+ +
+
+
{!!!objectID && !!!singleObjectID && (

@@ -57,15 +61,16 @@ export const TemplateView = ({ endpoint }) => {

)} {(objectID || singleObjectID) && ( - +
+ +
)}
-
); };