Run prettier

This commit is contained in:
Kevin Kandlbinder 2021-10-18 16:57:20 +02:00
parent b50b7d83c3
commit 0b5a905ae6
20 changed files with 452 additions and 352 deletions

View file

@ -18,7 +18,9 @@ class Layout extends React.Component {
title={this.props.title}
image={this.props.image}
speakable={this.props.speakable}
>{this.props.seoAdditional ?? null}</SEO>
>
{this.props.seoAdditional ?? null}
</SEO>
<Navigation isHome={this.props.transparentTopbar} />
<div id="content" role="main">
{this.props.children}
@ -61,7 +63,7 @@ Layout.propTypes = {
children: PropTypes.any.isRequired,
seoAdditional: PropTypes.any,
image: PropTypes.string,
speakable: PropTypes.any
speakable: PropTypes.any,
};
export default Layout;

View file

@ -2,8 +2,6 @@
@import "~@fontsource/fira-code/700.css";
@import "../variables";
* {
box-sizing: border-box;
}
@ -69,7 +67,6 @@ section > article,
}
article {
a {
color: $accentColor;
text-decoration: underline dotted currentColor;