From 0e66bd2fd9c31f8624e08152e138e555ae80dcd3 Mon Sep 17 00:00:00 2001 From: DongGeon0908 Date: Wed, 17 Jul 2024 17:36:58 +0900 Subject: [PATCH 1/2] v1.0.4-SNAPSHOT --- gradle.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle.properties b/gradle.properties index 4577872..1e834a0 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1 +1 @@ -version='1.0.3-SNAPSHOT' +version='1.0.4-SNAPSHOT' From 45a6a050ce7df0ca142dce09f2fe94310a106828 Mon Sep 17 00:00:00 2001 From: HaRim <76032947+HwangHarim@users.noreply.github.com> Date: Thu, 18 Jul 2024 14:39:01 +0900 Subject: [PATCH 2/2] =?UTF-8?q?fix=20:=20view=20=ED=81=AC=EA=B8=B0=20?= =?UTF-8?q?=EB=B3=80=EA=B2=BD=EC=8B=9C=20=ED=85=8C=EC=9D=B4=EB=B8=94=20?= =?UTF-8?q?=EC=A4=91=EC=95=99=20=EC=9C=84=EC=B9=98=ED=95=98=EA=B2=8C=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../static/css/shortener/access_shortcode.css | 30 +++++++++++-------- .../css/shortener/system_action_log_board.css | 30 +++++++++++-------- 2 files changed, 34 insertions(+), 26 deletions(-) diff --git a/src/main/resources/static/css/shortener/access_shortcode.css b/src/main/resources/static/css/shortener/access_shortcode.css index 0f1295f..b0e58f4 100644 --- a/src/main/resources/static/css/shortener/access_shortcode.css +++ b/src/main/resources/static/css/shortener/access_shortcode.css @@ -1,14 +1,18 @@ -/*html, body {*/ -/* height: 100%;*/ -/* margin: 0;*/ -/* background-color: #f8f9fa;*/ -/*}*/ +html, body { + height: 100%; + margin: 0; + background-color: #f8f9fa; +} -/*.container {*/ -/* position: fixed;*/ -/* top: 15%;*/ -/* left: 50%;*/ -/* transform: translate(-50%, -50%);*/ -/* width: calc(100% - 250px);*/ -/* padding: 40px;*/ -/*}*/ \ No newline at end of file +.container { + position: absolute; + top: calc(50% + 50px); /* header와 일정한 간격을 유지하도록 위치 조정 */ + left: calc(50% + 125px); /* sidebar의 너비(250px)의 반을 더한 값 */ + transform: translate(-50%, -50%); + background-color: white; + padding: 20px; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); + width: calc(100% - 300px); /* 양쪽 여백 50px씩 추가 */ + max-width: 800px; + min-width: 300px; +} diff --git a/src/main/resources/static/css/shortener/system_action_log_board.css b/src/main/resources/static/css/shortener/system_action_log_board.css index 0f1295f..2161b2f 100644 --- a/src/main/resources/static/css/shortener/system_action_log_board.css +++ b/src/main/resources/static/css/shortener/system_action_log_board.css @@ -1,14 +1,18 @@ -/*html, body {*/ -/* height: 100%;*/ -/* margin: 0;*/ -/* background-color: #f8f9fa;*/ -/*}*/ +html, body { + height: 100%; + margin: 0; + background-color: #f8f9fa; +} -/*.container {*/ -/* position: fixed;*/ -/* top: 15%;*/ -/* left: 50%;*/ -/* transform: translate(-50%, -50%);*/ -/* width: calc(100% - 250px);*/ -/* padding: 40px;*/ -/*}*/ \ No newline at end of file +.container { + position: absolute; + top: calc(50% + 50px); /* header와 일정한 간격을 유지하도록 위치 조정 */ + left: calc(50% + 125px); /* sidebar의 너비(250px)의 반을 더한 값 */ + transform: translate(-50%, -50%); + background-color: white; + padding: 20px; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); + width: calc(100% - 300px); /* 양쪽 여백 50px씩 추가 */ + max-width: 1800px; + min-width: 300px; +} \ No newline at end of file