24 lines
413 B
SCSS
24 lines
413 B
SCSS
.root {
|
|
width: fit-content !important;
|
|
.wrapper {
|
|
width: 387px;
|
|
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
padding: var(--spacing-2, 16px);
|
|
border-radius: var(--toaster-radius, 0px);
|
|
border: 1px solid var(--toaster-border, #e5eefa);
|
|
background: var(--toaster-background, #fff);
|
|
/* shadow/sm */
|
|
box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.1);
|
|
|
|
.body {
|
|
}
|
|
|
|
.progress {
|
|
height: 2px;
|
|
}
|
|
}
|
|
}
|