18 lines
282 B
CSS
18 lines
282 B
CSS
|
|
div.footer-loading {
|
||
|
|
display: flex;
|
||
|
|
justify-content: center;
|
||
|
|
gap: 8px;
|
||
|
|
padding: 8px 0;
|
||
|
|
width: 100%;
|
||
|
|
}
|
||
|
|
|
||
|
|
div.footer-loading span.text {
|
||
|
|
color: var(--font-color-secondary);
|
||
|
|
}
|
||
|
|
|
||
|
|
div.footer-loading img.icon {
|
||
|
|
opacity: 0.5;
|
||
|
|
width: 16px;
|
||
|
|
height: 16px;
|
||
|
|
}
|