diff --git a/.gitignore b/.gitignore index 1437c53..74b7586 100644 --- a/.gitignore +++ b/.gitignore @@ -25,6 +25,7 @@ yarn-debug.log* yarn-error.log* # local env files +.env .env.local .env.development.local .env.test.local diff --git a/example.env b/example.env new file mode 100644 index 0000000..d8c2c69 --- /dev/null +++ b/example.env @@ -0,0 +1 @@ +DATABASE_URL="mysql://root:root@127.0.0.1:3306/MyDatabase" \ No newline at end of file diff --git a/styles/Home.module.scss b/styles/Home.module.scss index 25117bf..ac1577b 100644 --- a/styles/Home.module.scss +++ b/styles/Home.module.scss @@ -5,3 +5,9 @@ display: flex; justify-content: center; } + +@media (max-width: 1280px) { + .App { + width: 100%; + } +} \ No newline at end of file