fix: restore dark mode styles and scope privacy policy styles

This commit is contained in:
2026-02-27 04:16:01 +00:00
parent 20dc18dd28
commit dc99dce485
2 changed files with 16 additions and 10 deletions

View File

@@ -224,7 +224,6 @@ onUnmounted(() => {
v-model="clipboardContent"
class="tool-textarea"
placeholder="Clipboard content will appear here line by line..."
readonly
></textarea>
</div>
</div>

View File

@@ -128,6 +128,7 @@ h1 {
-webkit-background-clip: text;
background-clip: text;
color: transparent;
width: fit-content;
}
.last-updated {
@@ -168,16 +169,22 @@ li {
color: var(--text-color);
}
strong {
color: var(--text-strong);
font-weight: 600;
}
code {
background: rgba(0, 0, 0, 0.1);
background: rgba(255, 255, 255, 0.1);
padding: 0.2rem 0.4rem;
border-radius: 4px;
font-family: monospace;
font-size: 0.9em;
color: var(--text-strong);
}
:global(:root[data-theme="dark"]) code {
background: rgba(255, 255, 255, 0.1);
:global(html[data-theme="light"]) code {
background: rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {