Canna71 / obsidian-chronology

Other
100 stars 7 forks source link

the timeline more tidy and compact #31

Open fireflysss opened 9 months ago

fireflysss commented 9 months ago

The calendar we made looks great, and the list looks great too Click on the daily , the hour table is too wide Can it be more compact

grrowl commented 3 months ago

You can use this css snippet (apply under Settings > Appearance) to shrink the view.

.chronology-timeline-container {
    display: flex;
    flex-direction: column;
}
.chrono-temp-slot1 {
    height: auto;
    min-height: 2em;
}
.chrono-cluster-container {
    min-height: 1em;
}
.chrono-cluster-container:empty {
    min-height: unset;
}

it's not ideal, there's something funked up with the flexbox styles in the plugin, but this was quick enough to work for me :)