ui/playerhud/components/notifications.razor.scss
@import "/UI/Styles/Theme.scss";
.notification-center-top {
position: absolute;
left: 50%;
top: 5%;
transform: translate(-50%, -50%);
}
.notification-center {
position: absolute;
left: 50%;
top: 30%;
transform: translate(-50%, -50%);
}
.notification-center-lower {
position: absolute;
left: 50%;
top: 65%;
transform: translate(-50%, -50%);
}
.notification-container {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
padding-bottom: 10px;
padding-top: 10px;
padding-left: 20px;
padding-right: 20px;
border-radius: 10px;
background-color: rgba(0, 0, 255, 0.5);
backdrop-filter-blur: 100%;
backdrop-filter-invert: 100%;
}
.notification {
font-size: 35px;
font-weight: bold;
}
.notification-image {
max-width: 150px;
max-height: 150px;
margin-bottom: 10px;
}