diff --git a/CHANGELOG.md b/CHANGELOG.md index 94143e7..6ed390e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -549,4 +549,22 @@ ### Removed +- N/A + +## [0.8.2] - 2024-05-28 + +### Added + +- N/A + +### Changed + +- Add style to color hyperlinks in markdown. + +### Deprecated + +- N/A + +### Removed + - N/A \ No newline at end of file diff --git a/package.json b/package.json index 84155f2..bcb592b 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "dms-viz.github.io", "private": true, - "version": "v0.8.1", + "version": "v0.8.2", "type": "module", "scripts": { "dev": "vite", diff --git a/v0/css/components.css b/v0/css/components.css index 6e65e43..eeeb8e4 100644 --- a/v0/css/components.css +++ b/v0/css/components.css @@ -99,3 +99,9 @@ transform: rotate(360deg); } } + +/* Markdown container styles */ +#markdown-container a { + color: #0000ff; + cursor: pointer; +}