Files
better-xcloud/src/assets/css/toast.styl
2025-01-28 16:04:53 +07:00

48 lines
920 B
Stylus
Executable File

.bx-toast {
user-select: none;
-webkit-user-select: none;
position: fixed;
left: 50%;
top: 24px;
transform: translate(-50%, 0);
background: #212121;
border-radius: 10px;
color: white;
z-index: var(--bx-toast-z-index);
font-family: var(--bx-normal-font);
border: 2px solid #fff;
display: flex;
align-items: center;
opacity: 0;
overflow: clip;
transition: opacity 0.2s ease-in;
box-shadow: 0 0 6px #000;
&.bx-show {
opacity: 0.95;
}
&.bx-hide {
opacity: 0;
pointer-events: none;
}
}
.bx-toast-msg {
font-size: 14px;
display: inline-block;
padding: 12px 16px;
white-space: pre;
}
.bx-toast-status {
font-weight: bold;
font-size: 14px;
text-transform: uppercase;
display: inline-block;
background: #fff;
padding: 12px 16px;
color: #212121;
white-space: pre;
}