File tree 5 files changed +23
-8
lines changed
5 files changed +23
-8
lines changed Original file line number Diff line number Diff line change
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 )
Original file line number Diff line number Diff line change @@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file.
4
4
5
5
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 ) .
6
6
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
+
7
17
## [ v2.2.1] ( https://github.com/ansidev/leetcode-blog/compare/v2.2.0...v2.2.1 ) (2023-03-05)
8
18
9
19
### Bug Fixes
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ export default defineConfig({
39
39
'@resvg/resvg-js' ,
40
40
] ,
41
41
} ,
42
- }
42
+ } ,
43
43
} )
44
44
45
45
// vite plugin to import fonts
Original file line number Diff line number Diff line change 2
2
"name" : " leetcode-blog" ,
3
3
"description" : " Solutions for LeetCode problems - Written by ansidev" ,
4
4
"type" : " module" ,
5
- "version" : " 2.2.1 " ,
5
+ "version" : " 2.2.2 " ,
6
6
"license" : " MIT" ,
7
7
"scripts" : {
8
8
"lc:new" : " tsx ./src/cmd/leetcode.ts" ,
Original file line number Diff line number Diff line change @@ -21,14 +21,10 @@ module.exports = {
21
21
'--tw-prose-headings' : theme ( 'textColor.style.primary' ) ,
22
22
'--tw-prose-bold' : theme ( 'textColor.style.primary' ) ,
23
23
'--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' ,
26
25
code : {
27
26
backgroundColor : theme ( 'backgroundColor.style.primary' ) ,
28
- paddingTop : '2px' ,
29
- paddingBottom : '5px' ,
30
- paddingLeft : '5px' ,
31
- paddingRight : '5px' ,
27
+ padding : '5px' ,
32
28
borderRadius : '3px' ,
33
29
} ,
34
30
'code::before' : {
You can’t perform that action at this time.
0 commit comments