-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #30 from selab-hs/develop
release v1.0.4
- Loading branch information
Showing
3 changed files
with
35 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
30
src/main/resources/static/css/shortener/access_shortcode.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
30
src/main/resources/static/css/shortener/system_action_log_board.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |