Changed to binit.app

This commit is contained in:
callum5892
2026-03-10 22:55:27 +00:00
parent 933d81a77f
commit b2bd85aa2c
8 changed files with 40 additions and 12 deletions

View File

@@ -265,7 +265,31 @@ textarea#content::placeholder { color: var(--text-muted); }
.paste-meta-actions {
margin-left: auto;
display: flex;
gap: 0.5rem;
gap: 0.4rem;
}
.meta-action {
display: inline-flex;
align-items: center;
background: transparent;
color: var(--text-muted);
border: 1px solid var(--border);
border-radius: var(--radius);
padding: 0.2rem 0.6rem;
font-size: 0.78rem;
font-weight: 500;
cursor: pointer;
text-decoration: none;
transition: color 0.15s, border-color 0.15s;
font-family: var(--sans);
white-space: nowrap;
line-height: 1.4;
}
.meta-action:hover {
color: var(--text);
border-color: var(--text-muted);
background: transparent;
}
.lang-badge {