Skip to content

Instantly share code, notes, and snippets.

@davzoku
Last active April 30, 2023 13:56
Show Gist options
  • Save davzoku/b14c24ee5528e69a250c9ab05ce5c56d to your computer and use it in GitHub Desktop.
Save davzoku/b14c24ee5528e69a250c9ab05ce5c56d to your computer and use it in GitHub Desktop.
Custom Slides css for Obsidian Slides Plugin
/* Apply styles to containing divs for slides */
.slides {
/* Set overflows to allow for auto vertical scroll bar and no horizontal scroll bar */
overflow-x: hidden !important;
overflow-y: auto !important;
/* Enable pointer events so users can click and drag on scrollbars */
pointer-events: auto !important;
}
/*
Snippet to make slideshow slides take up full height of slides' container div
*/
.slides {
height: 70% !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment