50 lines
884 B
CSS
50 lines
884 B
CSS
|
.vc-notification-root {
|
||
|
/* clear default button styles */
|
||
|
all: unset;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
width: 25vw;
|
||
|
min-height: 10vh;
|
||
|
color: var(--text-normal);
|
||
|
background-color: var(--background-secondary-alt);
|
||
|
position: absolute;
|
||
|
z-index: 2147483647;
|
||
|
right: 1rem;
|
||
|
border-radius: 6px;
|
||
|
overflow: hidden;
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
|
||
|
.vc-notification {
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
padding: 1.25rem;
|
||
|
gap: 1.25rem;
|
||
|
}
|
||
|
|
||
|
.vc-notification-icon {
|
||
|
height: 4rem;
|
||
|
width: 4rem;
|
||
|
border-radius: 6px;
|
||
|
}
|
||
|
|
||
|
/* Discord adding 3km margin to generic tags */
|
||
|
.vc-notification h2 {
|
||
|
margin: unset;
|
||
|
}
|
||
|
|
||
|
.vc-notification-progressbar {
|
||
|
height: 0.25rem;
|
||
|
border-radius: 5px;
|
||
|
margin-top: auto;
|
||
|
}
|
||
|
|
||
|
.vc-notification-p {
|
||
|
margin: 0.5rem 0 0;
|
||
|
line-height: 140%;
|
||
|
}
|
||
|
|
||
|
.vc-notification-img {
|
||
|
width: 100%;
|
||
|
}
|