/ common / components / ErrorScreen / index.scss
index.scss
 1  @import 'common/sass/variables';
 2  @import 'common/sass/mixins';
 3  
 4  .ErrorScreen {
 5    @include cover-message;
 6    background: color(brand-danger);
 7  
 8    code {
 9      display: block;
10      word-wrap: break-word;
11      background: rgba(#fff, 0.25);
12      border: 1px solid rgba(#fff, 0.6);
13      color: #FFF;
14      width: 100%;
15      padding: 10px;
16      border-radius: 2px;
17      text-shadow: none;
18      opacity: 0.8;
19    }
20  }