yetanotherrepo_obsidian-cop.../styles.css
Daniil Shipilov 406c963242 Release 1.2.2
2026-05-29 15:05:09 +01:00

29 lines
667 B
CSS

.setting-list-item-copilot-auto-completion {
display: flex;
align-items: center;
padding: 0.75em 0;
}
.setting-item-text-area-copilot-auto-completion {
width: 100%;
resize: vertical;
padding: 0.5em;
margin-top: 0.5em;
}
.loader-placeholder-copilot-auto-completion {
width: 25px;
height: 25px;
}
.loader-copilot-auto-completion {
width: 25px;
height: 25px;
border: 2px solid var(--background-modifier-border);
border-top-color: #1976d2;
border-radius: 50%;
animation: rotate-copilot-auto-completion 1s linear infinite
}
@keyframes rotate-copilot-auto-completion {
100% {transform: rotate(360deg)}
}