Skip to content

Commit

Permalink
refactor(template) : 메세지 창 스크롤 안보이게 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
Woongbin06 committed Apr 26, 2024
1 parent a6797b8 commit 8ca098c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<h2 style="font-size: 24px; font-weight: 700; text-align: center; margin-top: 40px;">
<span th:text="${fromuser}"></span>님이 커피챗 요청을 보냈어요.<br>
</h2>
<div style="width: 440px; max-height: 180px; min-height: 100px; border-radius: 8px; background-color: #FBFBFC; text-align: left; padding: 20px; margin-bottom: 20px; overflow: scroll;">
<div style="width: 440px; max-height: 180px; min-height: 100px; border-radius: 8px; background-color: #FBFBFC; text-align: left; padding: 20px; margin-bottom: 20px; overflow-y: scroll;">
<span th:text="${message}"></span> <br>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion main-server/src/main/resources/templates/reject-mail.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<h2 style="font-size: 24px; font-weight: 700; text-align: center; margin-top: 40px;">
<span th:text="${touser}"></span>님이 커피챗 요청을 거절했어요.<br>
</h2>
<div style="width: 440px; max-height: 180px; min-height: 100px; border-radius: 8px; background-color: #FBFBFC; text-align: left; padding: 20px; margin-bottom: 20px; overflow: scroll;">
<div style="width: 440px; max-height: 180px; min-height: 100px; border-radius: 8px; background-color: #FBFBFC; text-align: left; padding: 20px; margin-bottom: 20px; overflow-y: scroll;">
<span th:text="${message}"></span> <br>
</div>
</div>
Expand Down

0 comments on commit 8ca098c

Please sign in to comment.