aboutsummaryrefslogtreecommitdiff
path: root/styles/globals.css
diff options
context:
space:
mode:
authorFactiven <[email protected]>2023-04-29 10:41:23 +0700
committerFactiven <[email protected]>2023-04-29 10:41:23 +0700
commitf5086c7c394a9910a31ec80df143f5655cfde501 (patch)
tree8e99ef6852825ca8a421cc5b52c7c067f5098baa /styles/globals.css
parentEditor List v0.5 (diff)
downloadmoopa-f5086c7c394a9910a31ec80df143f5655cfde501.tar.xz
moopa-f5086c7c394a9910a31ec80df143f5655cfde501.zip
Bug Fixes
> Fixed loop refresh when failed fetching episode data
Diffstat (limited to 'styles/globals.css')
-rw-r--r--styles/globals.css27
1 files changed, 27 insertions, 0 deletions
diff --git a/styles/globals.css b/styles/globals.css
index ff7a1bb..810d8b0 100644
--- a/styles/globals.css
+++ b/styles/globals.css
@@ -203,3 +203,30 @@ button {
transform: translate(24px, 0);
}
}
+
+/* Add this CSS to your global styles or a component-specific CSS file */
+pre {
+ color: #f8f8f2;
+ font-family: "Fira Code", monospace;
+ font-size: 14px;
+ line-height: 1.5;
+ padding: 1rem;
+ margin: 1rem 0;
+ @apply bg-[#191c24];
+}
+
+pre code {
+ display: block;
+}
+
+.language-javascript {
+ color: #f8f8f2;
+}
+
+.language-html {
+ color: #e6db74;
+}
+
+.language-bash {
+ color: #89b482;
+}