Skip to content

Instantly share code, notes, and snippets.

View NotFluffy's full-sized avatar
💭
Out and about

Fluffy NotFluffy

💭
Out and about
  • Canada
View GitHub Profile
@NotFluffy
NotFluffy / obsidian-show-ribbon-on-hover.css
Last active October 4, 2024 21:47 — forked from raisabelatrix/obsidian-show-ribbon-on-hover.css
Keeps the sidebar ribbon out of sight and only shows it upon hover. [Tested Obsidian 1.6.7 on Windows11]
/* NO HOVER : NO RIBBON */
.side-dock-ribbon.mod-left:not(:hover){
width: 0px !important;
opacity: 0
}
.side-dock-ribbon.mod-left {
flex: 0 0 5px;
transition: flex .2s;
}