Remove compact styles and support auto-dark themes

This commit is contained in:
Gabe Kangas 2020-11-21 00:14:51 -08:00
parent dc41b21b92
commit ac0b315262
2 changed files with 5 additions and 1 deletions

View File

@ -1,4 +1,4 @@
import 'antd/dist/antd.compact.css';
import 'antd/dist/antd.css';
import '../styles/colors.scss';
import '../styles/globals.scss';

View File

@ -38,3 +38,7 @@ pre {
.recharts-wrapper {
font-size: 12px;
}
@media (prefers-color-scheme: dark) {
@import "~antd/dist/antd.dark";
}