mirror of
https://github.com/aldo-g/obsidian-llm-test.git
synced 2026-07-22 12:20:31 +00:00
33 lines
No EOL
608 B
CSS
33 lines
No EOL
608 B
CSS
/*
|
|
|
|
This CSS file will be included with your plugin, and
|
|
available in the app when your plugin is enabled.
|
|
|
|
If your plugin does not need CSS, delete this file.
|
|
|
|
*/
|
|
|
|
.spinner {
|
|
display: inline-block;
|
|
border: 2px solid rgba(0, 0, 0, 0.1);
|
|
border-left-color: #000;
|
|
border-radius: 50%;
|
|
width: 16px;
|
|
height: 16px;
|
|
animation: spin 0.8s linear infinite;
|
|
}
|
|
|
|
@keyframes spin {
|
|
to { transform: rotate(360deg); }
|
|
}
|
|
|
|
.view-tests-icon {
|
|
background: none;
|
|
border: none;
|
|
cursor: pointer;
|
|
padding: 0;
|
|
}
|
|
|
|
.view-tests-icon svg {
|
|
vertical-align: middle;
|
|
} |