Skip to content

Commit

Permalink
Fix input box CSS issue; Cleanup error.html
Browse files Browse the repository at this point in the history
  • Loading branch information
devansh-sharma-tw committed Apr 20, 2023
1 parent c7fad4c commit 991c1b0
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 13 deletions.
6 changes: 0 additions & 6 deletions default.template
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,6 @@ server {
index index.html;
}

# custom error page for 404 errors
error_page 404 /error.html;
location = /error.html {
root /opt/build-your-own-radar;
}

# nginx default error page for 50x errors
error_page 500 502 503 504 /50x.html;
location = /50x.html {
Expand Down
2 changes: 1 addition & 1 deletion src/stylesheets/_landingpage.scss
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
flex-wrap: nowrap;
align-items: center;

input[type='text'] {
input#document-input {
font-family: $baseFontFamily;
background-color: $mist;
border: 1px solid #d5d9db;
Expand Down
6 changes: 0 additions & 6 deletions webpack.common.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,6 @@ const plugins = [
chunks: ['main'],
inject: 'body',
}),
new HtmlWebpackPlugin({
template: './src/error.html',
chunks: ['common'],
inject: 'body',
filename: 'error.html',
}),
new webpack.DefinePlugin({
'process.env.CLIENT_ID': JSON.stringify(process.env.CLIENT_ID),
'process.env.API_KEY': JSON.stringify(process.env.API_KEY),
Expand Down

0 comments on commit 991c1b0

Please sign in to comment.