17 lines
380 B
Plaintext
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;
|
|
}
|
|
} |