refactor: better bot cleanup on disconnect fixes https://github.com/PrismarineJS/prismarine-web-client/issues/131
33 lines
524 B
CSS
33 lines
524 B
CSS
.deathScreen-container {
|
|
position: fixed;
|
|
inset: 0;
|
|
background: rgba(255, 0, 0, 0.5);
|
|
z-index: 10;
|
|
}
|
|
|
|
.deathScreen {
|
|
position: fixed;
|
|
top: 20%;
|
|
left: 0;
|
|
right: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.deathScreen-title {
|
|
color: white;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.deathScreen-reason {
|
|
color: white;
|
|
margin-bottom: 20px;
|
|
font-weight: normal;
|
|
}
|
|
|
|
.deathScreen-buttons-grouped {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 5px;
|
|
}
|