Skip to content

Commit

Permalink
chore(release): 1.17.3 [skip ci]
Browse files Browse the repository at this point in the history
## [1.17.3](v1.17.2...v1.17.3) (2021-08-02)

### Bug Fixes

* make main view a bit more compact for mobile screens ([0992aeb](0992aeb))
* update some details ([f971483](f971483))
  • Loading branch information
semantic-release-bot committed Aug 2, 2021
1 parent 0992aeb commit a57d703
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 11 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## [1.17.3](https://github.com/pengx17/logseq-dev-theme/compare/v1.17.2...v1.17.3) (2021-08-02)


### Bug Fixes

* make main view a bit more compact for mobile screens ([0992aeb](https://github.com/pengx17/logseq-dev-theme/commit/0992aeb0010c796927dd967fc389014064a88e35))
* update some details ([f971483](https://github.com/pengx17/logseq-dev-theme/commit/f97148326c0f2ebb0e9d234e9c481ef56fe5c021))

## [1.17.2](https://github.com/pengx17/logseq-dev-theme/compare/v1.17.1...v1.17.2) (2021-07-30)


Expand Down
21 changes: 11 additions & 10 deletions custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ textarea {
}

.cp__sidebar-main-content > div {
padding: 1px 1em 1em 1em;
padding: 1px 1em 1em 1em !important;
border: none;
}

Expand Down Expand Up @@ -130,7 +130,6 @@ textarea {

.cp__right-sidebar .sidebar-item {
margin: var(--ct-sidebar-padding) 0;
background: transparent;
box-shadow: none;
}

Expand All @@ -147,10 +146,6 @@ textarea {
padding-right: 1rem;
}

.sidebar-item.color-level .color-level {
background: var(--color-level-1);
}

/* Right sidebar title */
.sidebar-item .ml-1:not(.text-sm) {
font-size: 1.2em;
Expand Down Expand Up @@ -450,12 +445,18 @@ a:hover > .bullet-container .bullet {
display: block;
position: absolute;
width: 4px;
height: 12px;
top: calc(50% - 6px);
left: -6px;
height: 10px;
top: calc(50% - 5px);
left: -8px;
transform: scaleY(0.5);
transition: all 0.2s;
opacity: 0;
background: var(--ct-primary-color);
border-radius: 2px;
}
.block-content-wrapper > div > .block-content:hover > span > span > :first-child::before {
background: var(--ct-primary-color);
opacity: 1;
transform: scaleY(1);
}

/*************************
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.17.2",
"version": "1.17.3",
"description": "A custom theme for dev",
"logseq": {
"themes": [
Expand Down

0 comments on commit a57d703

Please sign in to comment.