diff --git a/resources/js/Components/ApplicationLogo.jsx b/resources/js/Components/ApplicationLogo.jsx index e4dca63..dff3bfd 100644 --- a/resources/js/Components/ApplicationLogo.jsx +++ b/resources/js/Components/ApplicationLogo.jsx @@ -2,6 +2,6 @@ import React from 'react'; export default function ApplicationLogo({ className }) { return ( -

Monitor Doc

+

Monitor Doc

); } diff --git a/resources/js/Components/Checkbox.jsx b/resources/js/Components/Checkbox.jsx index 2f6a528..9334c82 100644 --- a/resources/js/Components/Checkbox.jsx +++ b/resources/js/Components/Checkbox.jsx @@ -6,7 +6,7 @@ export default function Checkbox({ name, value, handleChange }) { type="checkbox" name={name} value={value} - className="rounded border-gray-300 text-indigo-600 shadow-sm focus:border-indigo-300 focus:ring focus:ring-indigo-200 focus:ring-opacity-50" + className="rounded text-indigo-600 shadow-sm focus:border-indigo-300 focus:ring focus:ring-indigo-200 focus:ring-opacity-50" onChange={(e) => handleChange(e)} /> ); diff --git a/resources/js/Components/Dropdown.jsx b/resources/js/Components/Dropdown.jsx index 8e393a2..3f02d42 100644 --- a/resources/js/Components/Dropdown.jsx +++ b/resources/js/Components/Dropdown.jsx @@ -30,7 +30,7 @@ const Trigger = ({ children }) => { ); }; -const Content = ({ align = 'right', width = '48', contentClasses = 'py-1 bg-white', children }) => { +const Content = ({ align = 'right', width = '48', contentClasses = 'py-1 bg-base-100', children }) => { const { open, setOpen } = useContext(DropDownContext); let alignmentClasses = 'origin-top'; @@ -76,7 +76,7 @@ const DropdownLink = ({ href, method = 'post', as = 'a', children }) => { href={href} method={method} as={as} - className="block w-full px-4 py-2 text-left text-sm leading-5 text-gray-700 hover:bg-gray-100 focus:outline-none focus:bg-gray-100 transition duration-150 ease-in-out" + className="block w-full px-4 py-2 text-left text-sm leading-5 hover:bg-base-200 focus:outline-none transition duration-150 ease-in-out" > {children} diff --git a/resources/js/Components/InputLabel.jsx b/resources/js/Components/InputLabel.jsx index 93c0ade..2f5b985 100644 --- a/resources/js/Components/InputLabel.jsx +++ b/resources/js/Components/InputLabel.jsx @@ -2,7 +2,7 @@ import React from 'react'; export default function InputLabel({ forInput, value, className, children }) { return ( -