|
|
@@ -3,6 +3,9 @@
|
|
|
* The default browser styles for <html> and <body> do not stretch to 100% height,
|
|
|
* so we must set this explicitly. This allows Tailwind's min-h-screen to work correctly.
|
|
|
*/
|
|
|
+
|
|
|
+ @import "tailwindcss";
|
|
|
+
|
|
|
html, body, #root {
|
|
|
height: 100%;
|
|
|
width: 100%;
|
|
|
@@ -269,13 +272,13 @@ body {
|
|
|
}
|
|
|
|
|
|
.markdown-content details.spoiler {
|
|
|
- @apply bg-gray-800/40 border border-gray-600 rounded-lg p-3 my-4;
|
|
|
+ @apply bg-gray-100/60 border border-gray-200 rounded-lg p-3 my-4;
|
|
|
}
|
|
|
|
|
|
.markdown-content details.spoiler summary {
|
|
|
- @apply cursor-pointer font-semibold text-purple-400;
|
|
|
+ @apply cursor-pointer font-semibold text-indigo-700;
|
|
|
}
|
|
|
|
|
|
.markdown-content details.spoiler[open] {
|
|
|
- @apply bg-gray-900/60;
|
|
|
-}
|
|
|
+ @apply bg-gray-200/80;
|
|
|
+}
|