benjypng / logseq-kanban-plugin

MIT License
102 stars 9 forks source link

Left align board #3

Closed distefam closed 2 years ago

distefam commented 2 years ago

Kanban boards take up a lot of horizontal space. However, when I expand my Logseq window horizontally the left margin grows so that the Kanban board is centered. Is there a way to make the Kanban board take up the full width of the window if it is the top selected bullet?

benjypng commented 2 years ago

Hi! I think this is because there is a central CSS setting to determine the width of the main content column. You can try to increase the width by adding this to your custom.css

.cp__sidebar-main-content {
    max-width: 1400px !important;
}