Skip to content

Commit

Permalink
change entry index
Browse files Browse the repository at this point in the history
  • Loading branch information
vlrmprjct committed Sep 2, 2024
1 parent 615ca80 commit 2d093d7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
6 changes: 4 additions & 2 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@ export const App = () => {
<div className="logo">
<Logo />
</div>
<h1>Hello {process.env.APP_NAME}</h1>
<h2>Start editing!</h2>
<h1>{process.env.APP_NAME}</h1>
<p>Start coding!</p>
<code>Mode: {process.env.NODE_ENV}</code>
<code>Version: v{process.env.npm_package_version}</code>
</div>
);
};
7 changes: 1 addition & 6 deletions src/scss/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,8 @@

body {
font-family: 'OpenSans-Regular';
background: $bg;
}

h1, h2 {
font-weight: normal;
color: var(--text-primary);
background: $bg;
}

.app {
Expand All @@ -24,6 +20,5 @@ h1, h2 {

.logo {
aspect-ratio: 1/1;
color: var(--text-primary);
width: 10rem;
}

0 comments on commit 2d093d7

Please sign in to comment.