add dark mode to popup dividers

This commit is contained in:
SethBurkart123
2023-09-25 15:32:16 +10:00
parent 833ec25c30
commit 499b03883b
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
const About: React.FC = () => { const About: React.FC = () => {
return ( return (
<div className="flex flex-col overflow-y-scroll divide-y divide-zinc-100/50"> <div className="flex flex-col overflow-y-scroll divide-y divide-zinc-100/50 dark:divide-zinc-700/50">
<div> <div>
<h2 className="text-lg font-bold">About</h2> <h2 className="text-lg font-bold">About</h2>
<p className="py-2">BetterSEQTA+ is a branch of BetterSEQTA which was originally developed by Nulkem. It was discontinued. So BetterSEQTA+ has come in to fill in that gap!</p> <p className="py-2">BetterSEQTA+ is a branch of BetterSEQTA which was originally developed by Nulkem. It was discontinued. So BetterSEQTA+ has come in to fill in that gap!</p>
+1 -1
View File
@@ -63,7 +63,7 @@ const Settings: React.FC = () => {
]; ];
return ( return (
<div className="flex flex-col -mt-4 overflow-y-scroll divide-y divide-zinc-100"> <div className="flex flex-col -mt-4 overflow-y-scroll divide-y divide-zinc-100 dark:divide-zinc-700">
{settings.map((setting, index) => ( {settings.map((setting, index) => (
<div className="flex items-center justify-between px-4 py-3" key={index}> <div className="flex items-center justify-between px-4 py-3" key={index}>
<div className="pr-4"> <div className="pr-4">
+1 -1
View File
@@ -55,7 +55,7 @@ export default function Shortcuts() {
}; };
return ( return (
<div className="flex flex-col divide-y divide-zinc-100"> <div className="flex flex-col divide-y divide-zinc-100 dark:divide-zinc-700">
<AnimatePresence> <AnimatePresence>
{isFormVisible ? ( {isFormVisible ? (