Redesign error nag
This commit is contained in:
parent
63f7a8f15c
commit
b53fc3732e
1 changed files with 9 additions and 3 deletions
|
@ -46,12 +46,18 @@ $nag-error-z-index: 999;
|
||||||
}
|
}
|
||||||
|
|
||||||
.nag--error {
|
.nag--error {
|
||||||
background-color: #000;
|
background-color: rgba(0, 0, 0, 0.9);
|
||||||
color: var(--color-text-error);
|
color: var(--color-text-error);
|
||||||
z-index: $nag-error-z-index;
|
z-index: $nag-error-z-index;
|
||||||
border-radius: var(--border-radius);
|
border-radius: var(--border-radius);
|
||||||
margin-top: var(--spacing-s);
|
left: var(--spacing-s);
|
||||||
margin-bottom: var(--spacing-s);
|
right: var(--spacing-s);
|
||||||
|
bottom: var(--spacing-s);
|
||||||
|
width: unset;
|
||||||
|
// margin-right:100px;
|
||||||
|
-webkit-backdrop-filter: blur(4px);
|
||||||
|
backdrop-filter: blur(4px);
|
||||||
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
.nag__message {
|
.nag__message {
|
||||||
|
|
Loading…
Reference in a new issue