-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
xumengqi
committed
Apr 1, 2021
1 parent
b8304e9
commit 2f206f5
Showing
3 changed files
with
79 additions
and
7 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
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
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,32 @@ | ||
/* pages/message/message.wxss */ | ||
/* pages/message/message.wxss */ | ||
.left-message { | ||
border-radius: 0px 12px 12px 12px; | ||
padding: 8px; | ||
max-width: 60%; | ||
background-color: #ffffff; | ||
text-align: left; | ||
word-break: break-all; | ||
/* IE 允许词内换行 */ | ||
word-wrap: break-word; | ||
/* IE 内容将在边界内换行 */ | ||
overflow: auto; | ||
margin: 12px; | ||
display: flex; | ||
justify-content:flex-end; | ||
} | ||
.right-message { | ||
border-radius: 12px 0px 12px 12px; | ||
padding: 8px; | ||
max-width: 60%; | ||
color: #eee6e6; | ||
background-color: #ff8260; | ||
text-align: left; | ||
word-break: break-all; | ||
/* IE 允许词内换行 */ | ||
word-wrap: break-word; | ||
/* IE 内容将在边界内换行 */ | ||
overflow: auto; | ||
margin: 12px; | ||
display: flex; | ||
justify-content:flex-end; | ||
} |