cours/.obsidian/snippets/[ui] Resize Handles tweaks.css
Oscar Plaisant 602a41e7f8 update
2024-12-25 22:30:24 +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);
}