File tree Expand file tree Collapse file tree 2 files changed +36
-23
lines changed
Expand file tree Collapse file tree 2 files changed +36
-23
lines changed Original file line number Diff line number Diff line change @@ -4,11 +4,18 @@ All notable changes to this project will be documented in this file.
44
55This project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
66
7+ [ 0.0.5 ] : https://github.com/AivGitHub/koldakov/releases/tag/v0.0.5
78[ 0.0.4 ] : https://github.com/AivGitHub/koldakov/releases/tag/v0.0.4
89[ 0.0.3 ] : https://github.com/AivGitHub/koldakov/releases/tag/v0.0.3
910[ 0.0.2 ] : https://github.com/AivGitHub/koldakov/releases/tag/v0.0.2
1011[ 0.0.1 ] : https://github.com/AivGitHub/koldakov/releases/tag/v0.0.1
1112
13+ ## [ 0.0.5] - 2023-07-03
14+
15+ ### Added
16+
17+ - Make urls more visible.
18+
1219## [ 0.0.4] - 2023-07-03
1320
1421### Added
Original file line number Diff line number Diff line change @@ -235,14 +235,16 @@ export const Home = () => {
235235 { experience . urls ? (
236236 experience . urls . map (
237237 ( url , i ) =>
238- < Link
239- className = "nav-link"
240- to = { url . link }
241- target = "_blank"
242- key = { i }
243- >
244- { url . name }
245- </ Link >
238+ < div >
239+ < Link
240+ className = "link-primary"
241+ to = { url . link }
242+ target = "_blank"
243+ key = { i }
244+ >
245+ { url . name }
246+ </ Link >
247+ </ div >
246248 )
247249 ) : ( < > </ > )
248250 }
@@ -282,14 +284,16 @@ export const Home = () => {
282284 { education . urls ? (
283285 education . urls . map (
284286 ( url , i ) =>
285- < Link
286- className = "nav-link"
287- to = { url . link }
288- target = "_blank"
289- key = { i }
290- >
291- { url . name }
292- </ Link >
287+ < div >
288+ < Link
289+ className = "link-primary d-block"
290+ to = { url . link }
291+ target = "_blank"
292+ key = { i }
293+ >
294+ { url . name }
295+ </ Link >
296+ </ div >
293297 )
294298 ) : ( < > </ > )
295299 }
@@ -320,13 +324,15 @@ export const Home = () => {
320324 < li
321325 key = { i }
322326 >
323- < Link
324- className = "nav-link"
325- to = { url . link }
326- target = "_blank"
327- >
328- { url . name }
329- </ Link >
327+ < div >
328+ < Link
329+ className = "link-primary"
330+ to = { url . link }
331+ target = "_blank"
332+ >
333+ { url . name }
334+ </ Link >
335+ </ div >
330336 </ li >
331337 ) }
332338 </ ul >
You can’t perform that action at this time.
0 commit comments