deathau / Notation-for-Obsidian

A theme for Obsidian, inspired by and borrowing elements from Notion
The Unlicense
193 stars 26 forks source link

Too much padding in title #8

Open foderking opened 2 years ago

foderking commented 2 years ago

This plugin is great!. but I noticed there's a lot of padding at the top of the text in the title part of the file. Is there a way to reduce it?

foderking commented 2 years ago

For reference Capture

yarin-zhang commented 2 years ago

You can add the following code snippet in .obsidian\snippets . It could solve article header shrinkage following title.

/* 解决文章页眉跟随标题收缩 */
.workspace-leaf-content[data-type=markdown] .view-header-title-container {
  width: 700px;
  margin-top: auto;
  height: auto;
  padding: 0;
  text-align: center;
}
yarin-zhang commented 2 years ago

You can add the following code snippet in .obsidian\snippets . It could solve article header shrinkage following title.

/* 解决文章页眉跟随标题收缩 */
.workspace-leaf-content[data-type=markdown] .view-header-title-container {
  width: 700px;
  margin-top: auto;
  height: auto;
  padding: 0;
  text-align: center;
}

Don't forget to enable this code in Obsidian's settings.