1:host { 2 display: flex; 3 flex: 0 0 100%; 4 flex-direction: column; 5} 6 7.wrapper { 8 position: relative; 9 margin: 16px; 10 padding: 16px; 11 display: flex; 12 flex-direction: column; 13 14 border-radius: 12px; 15 border: 1px solid #c4c6d0; 16} 17 18.label { 19 position: absolute; 20 top: -12px; 21 padding: 0 16px; 22 background: var(--mat-app-background-color); 23} 24 25.tag { 26 border-radius: 10px; 27 padding: 4px 8px; 28 color: white; 29 30 &.PASSED { 31 background-color: green; 32 } 33 34 &.MISSING_REFERENCE { 35 background-color: red; 36 } 37 38 &.updated { 39 background-color: gray; 40 } 41 42 &.FAILED { 43 background-color: red; 44 } 45} 46