This commit is contained in:
Mark Randall Havens 2025-11-09 20:17:11 +00:00
parent b231c8422b
commit 63078612b1
3 changed files with 44 additions and 5 deletions

View file

@ -195,3 +195,25 @@ body.sidebar-open #sidebar { transform: translateX(0); }
border: 0; border-radius: var(--radius); background: transparent;
display: block;
}
/* === POP-OUT PREVIEW === */
.preview-header {
text-align: right;
background: rgba(224,184,75,0.08);
border-bottom: 1px solid #333;
padding: .4rem 1rem;
}
.popout-btn {
background: none;
border: 1px solid var(--accent);
color: var(--accent);
border-radius: 6px;
padding: .25rem .6rem;
font-size: .85rem;
cursor: pointer;
transition: all .25s ease;
}
.popout-btn:hover {
background: var(--accent);
color: var(--bg);
}