2026-03-05 16:18:30 -05:00
|
|
|
/* SVG icon base styles (replaces inline <style> from icons.js) */
|
|
|
|
|
.oxi-icon {
|
2026-04-07 22:48:59 +02:00
|
|
|
display: inline-block;
|
|
|
|
|
width: 1em;
|
|
|
|
|
height: 1em;
|
|
|
|
|
vertical-align: -0.125em;
|
|
|
|
|
fill: currentColor;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
flex-shrink: 0;
|
2026-03-05 16:18:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.oxi-icon-spin {
|
2026-04-07 22:48:59 +02:00
|
|
|
animation: oxi-spin 1s linear infinite;
|
2026-03-05 16:18:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes oxi-spin {
|
2026-04-07 22:48:59 +02:00
|
|
|
from {
|
|
|
|
|
transform: rotate(0deg);
|
|
|
|
|
}
|
|
|
|
|
to {
|
|
|
|
|
transform: rotate(360deg);
|
|
|
|
|
}
|
2026-03-05 16:18:30 -05:00
|
|
|
}
|