mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-09 10:41:56 +00:00
f6410646c0
* Add polyfills, error text to error screen. * copy update to warn users about ensuring that they only send us non-sensitive info
21 lines
388 B
SCSS
21 lines
388 B
SCSS
@import 'common/sass/variables';
|
|
@import 'common/sass/mixins';
|
|
|
|
.ErrorScreen {
|
|
@include cover-message;
|
|
background: $brand-danger;
|
|
|
|
code {
|
|
display: block;
|
|
word-wrap: break-word;
|
|
background: rgba(#fff, 0.25);
|
|
border: 1px solid rgba(#fff, 0.6);
|
|
color: #FFF;
|
|
width: 100%;
|
|
padding: 10px;
|
|
border-radius: 2px;
|
|
text-shadow: none;
|
|
opacity: 0.8;
|
|
}
|
|
}
|