trust-module-frontend/src/Style/ErrorIndicator.css

36 lines
464 B
CSS

.error-indicator {
display: flex;
align-items: center;
gap: 15px;
}
.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;
}