Setting force window default size, min size and adding real window buttons

This commit is contained in:
Raven Scott 2024-06-09 01:27:42 -04:00
parent 148f79ed13
commit 27f555d267
3 changed files with 25 additions and 5 deletions

View File

@ -12,9 +12,7 @@
<header>
<div>LinkUp</div>
<div class="window-controls">
<button id="minimize-button">-</button>
<button id="maximize-button">+</button>
<button id="close-button">x</button>
<pear-ctrl></pear-ctrl>
</div>
</header>
<main>

View File

@ -7,8 +7,10 @@
"type": "desktop",
"gui": {
"backgroundColor": "#1F2430",
"height": 540,
"width": 720
"height": 547,
"minWidth": 955,
"minHeight": 547,
"width": 955
}
},
"license": "Apache-2.0",

View File

@ -12,6 +12,26 @@ body {
transition: background-color 0.3s ease, color 0.3s ease;
}
.pear-ctrl {
margin-top: 9px;
margin-right: 15px; /* Ensure this is as desired */
position: fixed; /* Ensures it stays relative to the viewport */
right: 13px; /* Ensures it stays 13px from the right edge */
top: 0; /* Keeps it at the top of the viewport */
}
.pear-ctrl:after {
content: '';
display: block;
height: 1.8rem;
position: fixed;
z-index: -1;
left: 0;
top: 0;
width: 100%;
background-color: #B0D94413;
filter: drop-shadow(2px 10px 6px #888);
}
main {
display: flex;
flex: 1;