refactor: add dark theme in status page
This commit is contained in:
parent
63145c1e4b
commit
824d5cd14e
@ -23,6 +23,10 @@ a {
|
|||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.App.dark {
|
||||||
|
@apply bg-gray-900 text-white;
|
||||||
|
}
|
||||||
|
|
||||||
/* Scrollbar */
|
/* Scrollbar */
|
||||||
::-webkit-scrollbar {
|
::-webkit-scrollbar {
|
||||||
width: 8px;
|
width: 8px;
|
||||||
|
@ -16,7 +16,7 @@ export const StatusPage: React.FC = React.memo(() => {
|
|||||||
const monitorList = info?.monitorList ?? [];
|
const monitorList = info?.monitorList ?? [];
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="w-4/5 mx-auto py-8">
|
<div className="w-4/5 mx-auto py-8 ">
|
||||||
<div className="text-2xl mb-4">{info?.title}</div>
|
<div className="text-2xl mb-4">{info?.title}</div>
|
||||||
|
|
||||||
<div className="text-lg mb-2">Services</div>
|
<div className="text-lg mb-2">Services</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user