Repost 2024-08-19T16:00:07.000-07:00
Published by Scott Kingery on
Via Mastodon: https://indieweb.social/@secupriv@mastodon.nl/112990801295846004
Simple things that increase the #obsidian joy. A small #CSS to tweak your tables a little
/* Header row line */
thead {
border-bottom: 3px solid;
}/* Band even rows */
.theme-light {
tbody tr:nth-of-type(even) {
background-color: #F2F2F2;
}
}.theme-dark {
tbody tr:nth-of-type(even) {
background-color: #363636;
}
}Just put the tables.css in '~.obsidian\snippets' and go to settings -> appearance -> CSS snippets in Obsidian to toggle it.
