Changed titlebar icons

This commit is contained in:
nizune 2021-08-01 19:29:27 +02:00 committed by Paul
parent d6e32fe8dc
commit 11c766511a

View file

@ -78,13 +78,13 @@ export function Titlebar() {
<UpdateIndicator style="titlebar" /> <UpdateIndicator style="titlebar" />
<div class="actions"> <div class="actions">
<div onClick={window.native.min}> <div onClick={window.native.min}>
<Minus size={20} /> <svg aria-hidden="false" width="12" height="12" viewBox="0 0 12 12"><rect fill="currentColor" width="10" height="1" x="1" y="6"></rect></svg>
</div> </div>
<div onClick={window.native.max}> <div onClick={window.native.max}>
<Square size={14} /> <svg aria-hidden="false" width="12" height="12" viewBox="0 0 12 12"><rect width="9" height="9" x="1.5" y="1.5" fill="none" stroke="currentColor"></rect></svg>
</div> </div>
<div onClick={window.native.close} class="error"> <div onClick={window.native.close} class="error">
<X size={24} /> <svg aria-hidden="false" width="12" height="12" viewBox="0 0 12 12"><polygon fill="currentColor" stroke-width="1" fill-rule="evenodd" points="11 1.576 6.583 6 11 10.424 10.424 11 6 6.583 1.576 11 1 10.424 5.417 6 1 1.576 1.576 1 6 5.417 10.424 1" style="stroke:currentColor;stroke-width:0.4"></polygon></svg>
</div> </div>
</div> </div>
</TitlebarBase> </TitlebarBase>