Consistency fixes

This commit is contained in:
Sacha Weatherstone
2022-02-26 16:24:17 +11:00
parent 819c14a592
commit 115ff9d4bf
3 changed files with 4 additions and 4 deletions

View File

@@ -98,7 +98,7 @@ export const Connection = (): JSX.Element => {
</div>
</div>
<div className="md:w-1/2">
<div className="h-96 overflow-y-auto rounded-md border border-gray-300 bg-gray-200 p-2 dark:border-gray-600 dark:bg-secondaryDark dark:text-gray-400">
<div className="h-96 overflow-y-auto rounded-md border border-gray-300 bg-gray-200 p-2 shadow-md dark:border-gray-600 dark:bg-primaryDark dark:text-gray-400">
{meshtasticState.logs.length === 0 && (
<div className="flex h-full w-full">
<m.img

View File

@@ -41,8 +41,8 @@ export const Card = ({
)}
<m.div
className={`flex flex-grow select-none flex-col gap-4 p-4 ${
title || actions ? 'rounded-b-md backdrop-blur-xl' : 'rounded-md'
className={`flex flex-grow select-none flex-col gap-4 bg-white p-4 dark:bg-secondaryDark ${
title || actions ? 'rounded-b-md' : 'rounded-md'
} ${draggable ? '' : 'bg-white dark:bg-primaryDark'}`}
initial={{ opacity: 0 }}
animate={{ opacity: 1 }}

View File

@@ -62,7 +62,7 @@ export const Modal = ({
/>
</div>
}
className="relative flex-col gap-4"
className="relative flex-col"
{...props}
/>
</div>