Skip to content

Commit

Permalink
Merge pull request #65 from ansidev/release/2.2.2
Browse files Browse the repository at this point in the history
Release v2.2.2
  • Loading branch information
ansidev authored Mar 8, 2023
2 parents 7de62a5 + 58981cb commit 0f6462c
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 8 deletions.
9 changes: 9 additions & 0 deletions .changes/v2.2.2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
## [v2.2.2](https://github.com/ansidev/leetcode-blog/compare/v2.2.1...v2.2.2) (2023-03-08)

### Bug Fixes

- **markdown:** update markdown config to nowrap text

- **ui:** update CSS styles for code blocks

Full Changelog: [v2.2.1...v2.2.2](https://github.com/ansidev/leetcode-blog/compare/v2.2.1...v2.2.2)
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org).

## [v2.2.2](https://github.com/ansidev/leetcode-blog/compare/v2.2.1...v2.2.2) (2023-03-08)

### Bug Fixes

- **markdown:** update markdown config to nowrap text

- **ui:** update CSS styles for code blocks

Full Changelog: [v2.2.1...v2.2.2](https://github.com/ansidev/leetcode-blog/compare/v2.2.1...v2.2.2)

## [v2.2.1](https://github.com/ansidev/leetcode-blog/compare/v2.2.0...v2.2.1) (2023-03-05)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export default defineConfig({
'@resvg/resvg-js',
],
},
}
},
})

// vite plugin to import fonts
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "leetcode-blog",
"description": "Solutions for LeetCode problems - Written by ansidev",
"type": "module",
"version": "2.2.1",
"version": "2.2.2",
"license": "MIT",
"scripts": {
"lc:new": "tsx ./src/cmd/leetcode.ts",
Expand Down
8 changes: 2 additions & 6 deletions tailwind.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,10 @@ module.exports = {
'--tw-prose-headings': theme('textColor.style.primary'),
'--tw-prose-bold': theme('textColor.style.primary'),
'--tw-prose-quotes': theme('textColor.style.primary'),
'--tw-prose-code': theme('textColor.style.primary-inverted'),
'--tw-prose-pre-bg': theme('textColor.style.primary'),
'--tw-prose-pre-bg': '#0d1117',
code: {
backgroundColor: theme('backgroundColor.style.primary'),
paddingTop: '2px',
paddingBottom: '5px',
paddingLeft: '5px',
paddingRight: '5px',
padding: '5px',
borderRadius: '3px',
},
'code::before': {
Expand Down

0 comments on commit 0f6462c

Please sign in to comment.