24 lines
380 B
SCSS
24 lines
380 B
SCSS
|
@import "theme.scss";
|
||
|
|
||
|
.error-indicator {
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
color: $header-primary;
|
||
|
|
||
|
img {
|
||
|
width: 32px;
|
||
|
height: 32px;
|
||
|
margin-right: 8px;
|
||
|
}
|
||
|
|
||
|
.retry-button {
|
||
|
color: $text-link;
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
|
||
|
.retry-button:hover {
|
||
|
text-decoration: underline;
|
||
|
}
|
||
|
}
|