30 lines
593 B
CSS
30 lines
593 B
CSS
.folder-error {
|
|
width: 18px;
|
|
height: 18px;
|
|
color: white;
|
|
font-size: 11px;
|
|
margin-right: 3px;
|
|
border-radius: 50%;
|
|
background-color: firebrick;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.folder-warnning {
|
|
width: 18px;
|
|
height: 18px;
|
|
color: white;
|
|
font-size: 11px;
|
|
margin-right: 3px;
|
|
border-radius: 50%;
|
|
background-color: darkgoldenrod;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
overflow: hidden;
|
|
}
|