diff --git a/.stylelintrc.json b/.stylelintrc.json index f7bc25a..687a85a 100644 --- a/.stylelintrc.json +++ b/.stylelintrc.json @@ -7,6 +7,7 @@ "scss/at-extend-no-missing-placeholder": null, "scss/dollar-variable-colon-space-after": null, "scss/dollar-variable-empty-line-before": null, + "media-feature-range-notation": null, "color-function-notation": null, "alpha-value-notation": null, "selector-id-pattern": null, diff --git a/assets/styles/styles.scss b/assets/styles/styles.scss index 99c4bf2..0f488a7 100644 --- a/assets/styles/styles.scss +++ b/assets/styles/styles.scss @@ -57,7 +57,7 @@ body { user-select: none; } - @media (width <= 768px) { + @media (min-width: 768px) { .bd-placeholder-img-lg { font-size: 3.5rem; } diff --git a/package.json b/package.json index 3650aee..1ee74ca 100644 --- a/package.json +++ b/package.json @@ -7,6 +7,8 @@ "scripts": { "prebuild": "npm run clean", "build": "node_modules/.bin/hugo/hugo --gc --minify", + "prestart": "npm run clean", + "start": "node_modules/.bin/hugo/hugo server --bind=0.0.0.0 --disableFastRender", "clean": "rm -rf public resources", "lint": "npm run -s lint:scripts && npm run -s lint:styles", "lint:scripts": "eslint assets/scripts",