From afb0dad0a5aca76c110837c4512698b9ac7fca92 Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Wed, 26 Jan 2022 21:17:10 -0800 Subject: [PATCH] fix: Code block background on mobile, closes #2998 --- shared/theme.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/shared/theme.ts b/shared/theme.ts index b0abcff43..7f3443dec 100644 --- a/shared/theme.ts +++ b/shared/theme.ts @@ -236,6 +236,7 @@ export const lightMobile = light; export const darkMobile = { ...dark, background: colors.black, + codeBackground: colors.almostBlack, }; export default light;