Skip to content

Commit

Permalink
hotfix visual
Browse files Browse the repository at this point in the history
  • Loading branch information
RafaelGB committed Sep 22, 2022
1 parent 0647ff4 commit 4146936
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 4 deletions.
2 changes: 2 additions & 0 deletions docs/docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
## 2.6.6
- Hotfix of add row bottom position and min height of navbar
## 2.6.5
### Shiny new things
- 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)
Expand Down
2 changes: 1 addition & 1 deletion manifest-beta.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "dbfolder",
"name": "DB Folder",
"version": "2.6.5",
"version": "2.6.6",
"minAppVersion": "0.15.9",
"description": "Folder with the capability to store and retrieve data from a folder like database",
"author": "RafaelGB",
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "dbfolder",
"name": "DB Folder",
"version": "2.6.5",
"version": "2.6.6",
"minAppVersion": "0.15.9",
"description": "Folder with the capability to store and retrieve data from a folder like database",
"author": "RafaelGB",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "obsidian-dbfolder",
"version": "2.6.5",
"version": "2.6.6",
"description": "This is a sample plugin for Obsidian (https://obsidian.md)",
"main": "main.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/components/NavBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ export function NavBar(navBarProps: NavBarProps) {
>
<Toolbar
style={{
minHeight: "unset",
minHeight: "2.65rem",
}}
>
<IconButton
Expand Down
1 change: 1 addition & 0 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -296,6 +296,7 @@ div.database-plugin__checkbox {
z-index: 3;
position: fixed;
margin-top: 2.65rem;
bottom: 0;
background-color: var(--background-primary);
}

Expand Down

0 comments on commit 4146936

Please sign in to comment.