style.scss (1039B)
1 .redux-templates-error-notice { 2 .components-notice { 3 display: flex; 4 font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; 5 font-size: 13px; 6 background-color: #e5f5fa; 7 border-left: 4px solid #00a0d2; 8 margin: 5px 15px 2px; 9 padding: 8px 12px; 10 align-items: center; 11 position: absolute; 12 height: 50px; 13 z-index: 9999; 14 width: 50%; 15 right: 0; 16 top: 70px; 17 transition: opacity 2s linear; 18 19 &.is-dismissible { 20 padding-right: 0; 21 } 22 23 &.is-success { 24 border-left-color: #4ab866; 25 background-color: rgba(74, 184, 102, 0.95); 26 } 27 28 &.is-warning { 29 border-left-color: #f0b849; 30 background-color: rgba(254, 248, 238, 0.95); 31 } 32 33 &.is-error { 34 border-left-color: #d94f4f; 35 background-color: rgba(249, 226, 226, 0.95); 36 } 37 } 38 }