Update separator design

This commit is contained in:
Idrees Hassan
2025-09-13 14:58:27 -04:00
parent f388079d44
commit 2eb72f5350
4 changed files with 14 additions and 17 deletions

9
dist/birb.js vendored
View File

@@ -186,7 +186,6 @@ const STYLESHEET = `:root {
box-sizing: border-box;
background-color: #ffecda;
margin-top: var(--border-size);
width: 100%;
flex-grow: 1;
box-shadow:
var(--border-size) 0 #ffecda,
@@ -268,11 +267,11 @@ const STYLESHEET = `:root {
.birb-window-separator {
width: 100%;
height: 1.5px;
background-color: #000000;
height: var(--border-size);
background-color: var(--border-color);
box-sizing: border-box;
margin-top: 4px;
margin-bottom: 4px;
margin-top: var(--double-border-size);
margin-bottom: var(--double-border-size);
opacity: 0.4;
}