cours/.obsidian/snippets/omts-[ui] Resize Handles tweaks.css
Oscar Plaisant 29453462f9 [nb] Commit
2024-12-26 16:09:08 +01:00

12 lines
378 B
CSS

/*
Resize handles tweaks
The resize handles when you resize sidebars use the accent colour which makes no sense to me
https://github.com/replete/obsidian-minimal-theme-css-snippets
*/
.workspace-leaf-resize-handle {
transition: all .2s ease-in;
}
.workspace-leaf-resize-handle:hover {
border-color:var(--text-muted);
background-color:var(--text-muted);
}