38 lines
491 B
CSS
Executable File
38 lines
491 B
CSS
Executable File
.error-indicator {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 15px;
|
|
padding-bottom: 20px;
|
|
}
|
|
|
|
.error-item {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 5px;
|
|
}
|
|
|
|
.error-item img {
|
|
width: 30px;
|
|
height: 30px;
|
|
}
|
|
|
|
.error-item span {
|
|
font-size: 18px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.critical span {
|
|
color: red;
|
|
}
|
|
|
|
.warning span {
|
|
color: orange;
|
|
}
|
|
|
|
.indicator-container {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 15px;
|
|
justify-content: center;
|
|
|
|
} |