style(checkbox): Match mui design

Co-authored-by: David Ralph <me@davidcralph.co.uk>
This commit is contained in:
alexsparkes
2024-06-05 14:40:29 +01:00
parent 2c98737e21
commit c1f470f73f
8 changed files with 21 additions and 53 deletions

View File

@@ -111,7 +111,9 @@ class Changelog extends PureComponent {
<span className="mainTitle">{this.state.title}</span>
<span className="subtitle">Released on {this.state.date}</span>
</div>
<Markdown>{this.state.content}</Markdown>
<Markdown options={{ overrides: { a: { props: { target: '_blank' } } } }}>
{this.state.content}
</Markdown>
</article>
);
}