fix(core): update

This commit is contained in:
2021-08-29 17:10:25 +02:00
parent 631502b480
commit ab19e97c31
7 changed files with 162 additions and 63 deletions

View File

@ -31,16 +31,46 @@ export class DeesUpdater extends LitElement {
${domtools.elementBasic.styles}
<style>
.modalContainer {
background: #333333;
will-change: transform;
position: relative;
background: #222;
margin: auto;
height: 200px;
width: 800px;
margin-top: 80px;
border-radius: 10px;
max-width: 800px;
border-radius: 3px;
border-top: 1px solid #333;
}
.headingContainer {
display: flex;
justify-content: center;
align-items: center;
padding: 40px 40px;
}
h1 {
margin: none;
font-size: 20px;
color: #fff;
margin-left: 20px;
font-weight: normal;
}
.buttonContainer {
display: grid;
grid-template-columns: 50% 50%;
}
</style>
<dees-windowlayer>
<div class="modalContainer"></div>
<div class="modalContainer">
<div class="headingContainer">
<dees-spinner .size=${60}></dees-spinner>
<h1>Updating the application...</h1>
</div>
<div class="buttonContainer">
<dees-button>More info</dees-button>
<dees-button>Changelog</dees-button>
</div>
</div>
</dees-windowlayer>>
`;
}