Skip to content
This repository was archived by the owner on Jul 28, 2025. It is now read-only.

Commit 4146936

Browse files
committed
hotfix visual
1 parent 0647ff4 commit 4146936

File tree

6 files changed

+7
-4
lines changed

6 files changed

+7
-4
lines changed

docs/docs/changelog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## 2.6.6
2+
- Hotfix of add row bottom position and min height of navbar
13
## 2.6.5
24
### Shiny new things
35
- new UX for the "Add a new page" and navigation menus [ISSUE#410](https://github.com/RafaelGB/obsidian-db-folder/issues/410) [Inspired by javiavid design](https://github.com/javiavid)

manifest-beta.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "dbfolder",
33
"name": "DB Folder",
4-
"version": "2.6.5",
4+
"version": "2.6.6",
55
"minAppVersion": "0.15.9",
66
"description": "Folder with the capability to store and retrieve data from a folder like database",
77
"author": "RafaelGB",

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "dbfolder",
33
"name": "DB Folder",
4-
"version": "2.6.5",
4+
"version": "2.6.6",
55
"minAppVersion": "0.15.9",
66
"description": "Folder with the capability to store and retrieve data from a folder like database",
77
"author": "RafaelGB",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "obsidian-dbfolder",
3-
"version": "2.6.5",
3+
"version": "2.6.6",
44
"description": "This is a sample plugin for Obsidian (https://obsidian.md)",
55
"main": "main.js",
66
"scripts": {

src/components/NavBar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ export function NavBar(navBarProps: NavBarProps) {
109109
>
110110
<Toolbar
111111
style={{
112-
minHeight: "unset",
112+
minHeight: "2.65rem",
113113
}}
114114
>
115115
<IconButton

styles.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -296,6 +296,7 @@ div.database-plugin__checkbox {
296296
z-index: 3;
297297
position: fixed;
298298
margin-top: 2.65rem;
299+
bottom: 0;
299300
background-color: var(--background-primary);
300301
}
301302

0 commit comments

Comments
 (0)