5e2100000d
## Issue - Errors like "unexpected token at..." and "failed to fetch" are being logged, rather than the actual call error. - Publish SDK timeout is sometimes successful, but the user doesn't know, so they re-created the same claim ## Change - Attempt to make the logs more helpful, and the error message more meaningful to the user. - Starting off with 'publish' and tip SDK call as an experiment. Can add others if this method works.
89 lines
1.8 KiB
SCSS
89 lines
1.8 KiB
SCSS
.snack-bar {
|
|
bottom: 2rem;
|
|
right: 2rem;
|
|
max-width: 20rem;
|
|
background-color: var(--color-primary);
|
|
color: var(--color-primary-contrast);
|
|
border-radius: var(--border-radius);
|
|
padding: var(--spacing-s) var(--spacing-m) var(--spacing-s) var(--spacing-m);
|
|
position: fixed;
|
|
transition: all var(--transition-duration) var(--transition-type);
|
|
z-index: 10000; // hack to get it over react modal
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
.button__label {
|
|
color: var(--color-primary-contrast);
|
|
}
|
|
|
|
@media (max-width: $breakpoint-small) {
|
|
bottom: var(--spacing-xxs);
|
|
right: var(--spacing-xxs);
|
|
}
|
|
}
|
|
|
|
.snack-bar--upgrade {
|
|
@extend .snack-bar;
|
|
left: auto;
|
|
right: 2rem;
|
|
background-color: var(--color-snack-bg-upgrade);
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.snack-bar--error {
|
|
background-color: var(--color-snack-bg-error);
|
|
}
|
|
|
|
.snack-bar--notification {
|
|
@extend .card;
|
|
background-color: var(--color-card-background);
|
|
color: var(--color-text);
|
|
}
|
|
|
|
.snack-bar__action {
|
|
display: inline-block;
|
|
margin: var(--spacing-s) 0;
|
|
margin-left: auto;
|
|
min-width: min-content;
|
|
color: var(--color-white);
|
|
|
|
span:hover {
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
|
|
.snack-bar__message {
|
|
align-items: center;
|
|
display: flex;
|
|
flex-direction: row;
|
|
font-size: var(--font-body);
|
|
|
|
.credit-amount {
|
|
color: inherit;
|
|
}
|
|
|
|
.icon--CheckCircle,
|
|
.icon--AlertCircle {
|
|
margin-right: var(--spacing-m);
|
|
min-width: 1rem;
|
|
}
|
|
}
|
|
|
|
.snack-bar__messageText {
|
|
min-width: 0;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.snack-bar__messageText--sub {
|
|
font-size: var(--font-xsmall);
|
|
color: var(--color-text-subtitle);
|
|
}
|
|
|
|
.snack-bar__close {
|
|
color: var(--color-primary-contrast);
|
|
margin-left: var(--spacing-m);
|
|
}
|