Skip to content

Commit

Permalink
Merge pull request #30 from selab-hs/develop
Browse files Browse the repository at this point in the history
release v1.0.4
  • Loading branch information
HwangHarim authored Jul 18, 2024
2 parents 38cfda6 + a2f0e54 commit 914f48f
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 27 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version='1.0.3'
version='1.0.4'
30 changes: 17 additions & 13 deletions src/main/resources/static/css/shortener/access_shortcode.css
Original file line number Diff line number Diff line change
@@ -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;*/
/*}*/
.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;
}
30 changes: 17 additions & 13 deletions src/main/resources/static/css/shortener/system_action_log_board.css
Original file line number Diff line number Diff line change
@@ -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;*/
/*}*/
.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;
}

0 comments on commit 914f48f

Please sign in to comment.