Skip to content

Commit

Permalink
chore(release): 1.25.1 [skip ci]
Browse files Browse the repository at this point in the history
## [1.25.1](v1.25.0...v1.25.1) (2022-04-15)

### Bug Fixes

* header paddings ([c61d414](c61d414))
  • Loading branch information
semantic-release-bot committed Apr 15, 2022
1 parent 20c421a commit c2fe4c4
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [1.25.1](https://github.com/pengx17/logseq-dev-theme/compare/v1.25.0...v1.25.1) (2022-04-15)


### Bug Fixes

* header paddings ([c61d414](https://github.com/pengx17/logseq-dev-theme/commit/c61d414c707b32f25ce69b8280d4b58f8f23a039))

# [1.25.0](https://github.com/pengx17/logseq-dev-theme/compare/v1.24.3...v1.25.0) (2022-04-15)


Expand Down
15 changes: 10 additions & 5 deletions custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,6 @@ i {
font-size: 14px;
}

#main-content-container {
padding: 0;
}

.cp__sidebar-main-content > div {
padding: 1px 1em 1em 1em !important;
border: none;
Expand All @@ -77,6 +73,11 @@ i {
padding: 0 1rem;
}
}
/* Fix iphone issues */
html.is-native-iphone #left-sidebar {
top: 0 !important;
}

@supports (-webkit-backdrop-filter: blur(20px)) or (backdrop-filter: blur(20px)) {
.cp__header,
.cp__right-sidebar-topbar,
Expand Down Expand Up @@ -116,7 +117,7 @@ i {
}

#main-content-container {
padding-top: var(--ct-header-height);
padding-top: var(--ct-header-height) !important;
}

.page {
Expand Down Expand Up @@ -903,6 +904,10 @@ progress::-webkit-progress-value {
margin-top: 0 !important;
}

.link_preview__root {
max-width: 100%;
}

/* Popups */
.tippy-tooltip {
padding: 0.5em 0;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "logseq-dev-theme",
"author": "pengx17",
"version": "1.25.0",
"version": "1.25.1",
"description": "A custom theme for dev",
"logseq": {
"themes": [
Expand Down

0 comments on commit c2fe4c4

Please sign in to comment.