From 4e130f862f1cf697aac4a5816994e2db1f68dd45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9D=B4=EC=9D=80=EC=A7=84?= <149948792+eunjingjing@users.noreply.github.com> Date: Mon, 22 Jul 2024 17:31:37 +0900 Subject: [PATCH 1/5] =?UTF-8?q?=ED=94=84=EB=A1=A0=ED=8A=B8=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 지도 크기 화면 비율에 맞춰 수정 - 화면 이동 시 파일 경로 설정 --- backend/sql_app/static/css/style.css | 8 +++++- backend/sql_app/static/navigation.html | 13 ++++++--- backend/sql_app/template/index.html | 15 ++++------ backend/sql_app/template/main.html | 11 ++++--- backend/sql_app/template/near.html | 30 +++++++++++--------- backend/sql_app/template/oversize_waste.html | 25 ++++++---------- backend/sql_app/template/search.html | 4 +-- backend/sql_app/template/sign_in.html | 8 ++++-- backend/sql_app/template/sign_up.html | 8 ++++-- frontend/.vscode/settings.json | 0 10 files changed, 65 insertions(+), 57 deletions(-) create mode 100644 frontend/.vscode/settings.json diff --git a/backend/sql_app/static/css/style.css b/backend/sql_app/static/css/style.css index 54f1519..d440fb0 100644 --- a/backend/sql_app/static/css/style.css +++ b/backend/sql_app/static/css/style.css @@ -96,6 +96,7 @@ body { .material-symbols-outlined { color: white; + cursor: pointer; } main { @@ -103,6 +104,7 @@ main { display: flex; gap: 2em; padding-top: 8rem; + height: auto; } /* sign in/out main */ @@ -284,7 +286,7 @@ footer a { /* select box 디자인 */ #gugun { - width: 30%; + width: fit-content; height: 30px; padding: 0 10px; box-sizing: border-box; @@ -300,3 +302,7 @@ footer a { option { height: 25px; } + +.nearMain { + height: 75vh; +} diff --git a/backend/sql_app/static/navigation.html b/backend/sql_app/static/navigation.html index 8039cd5..45afac0 100644 --- a/backend/sql_app/static/navigation.html +++ b/backend/sql_app/static/navigation.html @@ -1,14 +1,19 @@