Finish report issue page

This commit is contained in:
Fred Boniface
2023-06-26 21:02:59 +01:00
parent 50f07bb32c
commit 60d6aa50fa
2 changed files with 56 additions and 3 deletions

View File

@@ -0,0 +1,31 @@
<div id="container">
<p id="tick">&#10004;</p>
<p>Done</p>
</div>
<style>
#tick {
font-size: 45px;
margin: 0;
padding: 0;
}
#container {
position:fixed;
top:50%;
left:50%;
transform:translate(-50%,-50%);
margin:auto;
background-color:var(--overlay-color);
border-radius:15px;
padding:20px;
padding-bottom:1px;
min-width:90px;
max-width:90px
}
p {
padding-top:0px;
font-weight:bolder;
overflow-wrap:normal;
color: white;
}
</style>