File size: 816 Bytes
bae9410 a3689a2 bae9410 a3689a2 bae9410 a3689a2 bae9410 a3689a2 bae9410 a3689a2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
.outer-container {
background-color: var(--vscode-sideBar-background);
display: flex;
flex-direction: column;
box-sizing: border-box;
height: 100%;
overflow: hidden;
}
.error-container {
display: flex;
flex-direction: column-reverse;
gap: 0.5rem;
}
.error {
flex-direction: row;
display: flex;
padding: 1rem;
color: var(--vscode-input-foreground);
background-color: var(--vscode-inputValidation-errorBackground);
min-height: 2rem;
position: relative;
overflow: auto;
align-items: baseline;
}
.close-btn {
position: absolute;
top: 0.65rem;
right: 0.65rem;
background: none;
border: none;
color: var(--vscode-input-foreground);
cursor: pointer;
}
/* Undo the UA stylesheet set by vscode */
kbd {
all: unset;
}
|