chocobar/ui/topbar.slint
Candifloss 28e2d2a50a Initial commit
- Start building slint UI
2025-11-13 00:14:31 +05:30

17 lines
380 B
Plaintext

export component TopBar inherits Window {
title: "chocobar";
width: 1000px;
height: 25px;
always-on-top: true;
no-frame: true;
background: #999898a6;
topbar := Rectangle {
width: 100%;
height: 100%;
border-radius: 4px;
background: #79a9af7b;
drop-shadow-blur: 15px;
drop-shadow-color: #00000066;
}
}