mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 11:01:41 +01:00
22 lines
352 B
SCSS
22 lines
352 B
SCSS
.error-message {
|
|
min-height: 32px;
|
|
border: 1px solid $monzo;
|
|
color: $monzo;
|
|
background: lighten($monzo, 56%);
|
|
border-radius: 4px;
|
|
font-size: .75rem;
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
padding: 8px 16px;
|
|
|
|
&__icon {
|
|
margin-right: 8px;
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
&__text {
|
|
overflow: auto;
|
|
}
|
|
}
|