Add event viewer

This commit is contained in:
Robert Long
2021-07-29 11:24:22 -07:00
parent 49353cd2fe
commit fe5e840630
3 changed files with 91 additions and 8 deletions

View File

@@ -67,4 +67,23 @@
.eventDetails {
font-weight: 200;
word-break: break-all;
}
.eventViewer {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
min-width: 320px;
max-width: 80%;
border-radius: 8px;
border: 1px solid black;
background-color: #222;
padding: 20px;
margin: 20px;
}
.eventViewer .content {
max-height: 200px;
overflow: auto;
}