Override bg color on light vs dark mode storybook (#884)

This commit is contained in:
Evan Simkowitz 2024-09-26 19:37:07 -07:00 committed by GitHub
parent ba7b0b7019
commit c1d2a05e4c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -12,4 +12,14 @@
}
}
}
body {
background-color: #ffffff !important;
}
html.dark {
body {
background-color: #222222 !important;
}
}
</style>