mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-19 04:55:57 +08:00
25 lines
461 B
SCSS
25 lines
461 B
SCSS
@use "style.scss";
|
|
|
|
ueb-window {
|
|
display: block;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
transform: translateX(calc(var(--ueb-position-x) * 1px)) translateY(calc(var(--ueb-position-y) * 1px));
|
|
z-index: 1000;
|
|
}
|
|
|
|
.ueb-window-top {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
padding: 4px 8px;
|
|
height: 30px;
|
|
background: #1a1a1a;
|
|
}
|
|
|
|
.ueb-window-close {
|
|
padding: 8px;
|
|
height: 12px;
|
|
width: 12px;
|
|
} |