Skip to content

Commit 0f6462c

Browse files
authored
Merge pull request #65 from ansidev/release/2.2.2
Release v2.2.2
2 parents 7de62a5 + 58981cb commit 0f6462c

File tree

5 files changed

+23
-8
lines changed

5 files changed

+23
-8
lines changed

Diff for: .changes/v2.2.2.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
## [v2.2.2](https://github.com/ansidev/leetcode-blog/compare/v2.2.1...v2.2.2) (2023-03-08)
2+
3+
### Bug Fixes
4+
5+
- **markdown:** update markdown config to nowrap text
6+
7+
- **ui:** update CSS styles for code blocks
8+
9+
Full Changelog: [v2.2.1...v2.2.2](https://github.com/ansidev/leetcode-blog/compare/v2.2.1...v2.2.2)

Diff for: CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file.
44

55
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).
66

7+
## [v2.2.2](https://github.com/ansidev/leetcode-blog/compare/v2.2.1...v2.2.2) (2023-03-08)
8+
9+
### Bug Fixes
10+
11+
- **markdown:** update markdown config to nowrap text
12+
13+
- **ui:** update CSS styles for code blocks
14+
15+
Full Changelog: [v2.2.1...v2.2.2](https://github.com/ansidev/leetcode-blog/compare/v2.2.1...v2.2.2)
16+
717
## [v2.2.1](https://github.com/ansidev/leetcode-blog/compare/v2.2.0...v2.2.1) (2023-03-05)
818

919
### Bug Fixes

Diff for: astro.config.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export default defineConfig({
3939
'@resvg/resvg-js',
4040
],
4141
},
42-
}
42+
},
4343
})
4444

4545
// vite plugin to import fonts

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "leetcode-blog",
33
"description": "Solutions for LeetCode problems - Written by ansidev",
44
"type": "module",
5-
"version": "2.2.1",
5+
"version": "2.2.2",
66
"license": "MIT",
77
"scripts": {
88
"lc:new": "tsx ./src/cmd/leetcode.ts",

Diff for: tailwind.config.cjs

+2-6
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,10 @@ module.exports = {
2121
'--tw-prose-headings': theme('textColor.style.primary'),
2222
'--tw-prose-bold': theme('textColor.style.primary'),
2323
'--tw-prose-quotes': theme('textColor.style.primary'),
24-
'--tw-prose-code': theme('textColor.style.primary-inverted'),
25-
'--tw-prose-pre-bg': theme('textColor.style.primary'),
24+
'--tw-prose-pre-bg': '#0d1117',
2625
code: {
2726
backgroundColor: theme('backgroundColor.style.primary'),
28-
paddingTop: '2px',
29-
paddingBottom: '5px',
30-
paddingLeft: '5px',
31-
paddingRight: '5px',
27+
padding: '5px',
3228
borderRadius: '3px',
3329
},
3430
'code::before': {

0 commit comments

Comments
 (0)