We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 125e1df commit 6736ff7Copy full SHA for 6736ff7
src/routes/tutorial/[slug]/Output.svelte
@@ -162,10 +162,10 @@
162
font-family: var(--font-mono);
163
font-size: var(--sk-text-xs);
164
padding: 1rem;
165
- background: var(--sk-back-1);
166
- border-top: 1px solid var(--sk-back-3);
+ background: rgba(255,255,255,0.5);
167
transform: translate(0, 100%);
168
transition: transform 0.3s;
+ backdrop-filter: blur(3px);
169
}
170
171
.terminal::after {
@@ -189,4 +189,10 @@
189
.terminal.visible::after {
190
--shadow: rgba(0, 0, 0, 0.05);
191
192
+
193
+ @media (prefers-color-scheme: dark) {
194
+ .terminal {
195
+ background: rgba(0,0,0,0.5);
196
+ }
197
198
</style>
0 commit comments