aldo-g_obsidian-llm-test/styles.css
2025-02-14 15:26:42 +01:00

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;
}