Commit 34c1ba7b by zhanghaozhe

Merge branch 'intelligent-recommend' into dev

parents c7324090 2a5f09d4
...@@ -257,7 +257,7 @@ function Options({options, handleSelect}) { ...@@ -257,7 +257,7 @@ function Options({options, handleSelect}) {
{ {
!!options.length && options.map(item => { !!options.length && options.map(item => {
return <li onClick={() => handleSelect(item)} key={item.id}> return <li onClick={() => handleSelect(item)} key={item.id}>
{item.describe} <button>{item.describe}</button>
</li> </li>
}) })
} }
......
...@@ -73,6 +73,7 @@ ...@@ -73,6 +73,7 @@
.message { .message {
.avatar { .avatar {
width: 10%;
display: inline-block; display: inline-block;
margin-right: 14px; margin-right: 14px;
...@@ -84,9 +85,9 @@ ...@@ -84,9 +85,9 @@
} }
.text { .text {
max-width: 85%;
position: relative; position: relative;
padding: 0 16px; padding: 0 16px;
height: 40px;
display: inline-block; display: inline-block;
background: rgba(255, 255, 255, 1); background: rgba(255, 255, 255, 1);
border-radius: 4px; border-radius: 4px;
...@@ -120,6 +121,7 @@ ...@@ -120,6 +121,7 @@
&.user { &.user {
.avatar { .avatar {
float: right; float: right;
margin-right: 0;
} }
.text { .text {
...@@ -159,15 +161,21 @@ ...@@ -159,15 +161,21 @@
} }
li { li {
width: 126px; margin-bottom: 15px;
height: 33px;
margin: 0 auto 15px;
background: linear-gradient(90deg, rgba(0, 153, 255, 1) 0%, rgba(77, 184, 255, 1) 100%);
border-radius: 17px;
font-size: 16px;
color: #fff;
text-align: center; text-align: center;
line-height: 33px;
button {
padding: 9px 30px;
box-sizing: border-box;
background: linear-gradient(90deg, rgba(0, 153, 255, 1) 0%, rgba(77, 184, 255, 1) 100%);
border-radius: 17px;
font-size: 16px;
color: #fff;
-webkit-appearance: none;
outline: none;
border: none;
}
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment