Skip to content

Commit 991c1b0

Browse files
Fix input box CSS issue; Cleanup error.html
1 parent c7fad4c commit 991c1b0

File tree

3 files changed

+1
-13
lines changed

3 files changed

+1
-13
lines changed

default.template

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,6 @@ server {
66
index index.html;
77
}
88

9-
# custom error page for 404 errors
10-
error_page 404 /error.html;
11-
location = /error.html {
12-
root /opt/build-your-own-radar;
13-
}
14-
159
# nginx default error page for 50x errors
1610
error_page 500 502 503 504 /50x.html;
1711
location = /50x.html {

src/stylesheets/_landingpage.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
flex-wrap: nowrap;
4646
align-items: center;
4747

48-
input[type='text'] {
48+
input#document-input {
4949
font-family: $baseFontFamily;
5050
background-color: $mist;
5151
border: 1px solid #d5d9db;

webpack.common.js

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,6 @@ const plugins = [
2525
chunks: ['main'],
2626
inject: 'body',
2727
}),
28-
new HtmlWebpackPlugin({
29-
template: './src/error.html',
30-
chunks: ['common'],
31-
inject: 'body',
32-
filename: 'error.html',
33-
}),
3428
new webpack.DefinePlugin({
3529
'process.env.CLIENT_ID': JSON.stringify(process.env.CLIENT_ID),
3630
'process.env.API_KEY': JSON.stringify(process.env.API_KEY),

0 commit comments

Comments
 (0)