askbot-dragon 0.7.12 → 0.7.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "askbot-dragon",
3
- "version": "0.7.12",
3
+ "version": "0.7.13",
4
4
  "scripts": {
5
5
  "serve": "vue-cli-service serve",
6
6
  "build": "vue-cli-service build",
@@ -1,6 +1,7 @@
1
1
  <template>
2
2
  <div id="answer-radio">
3
3
  <p class="radio-description" v-html="msg.content.description" v-if="msg.content.description"></p>
4
+ <div class="bottom-link" v-if="msg.content.description"></div>
4
5
  <div class="options-list">
5
6
  <div
6
7
  v-for="(option, index) in msg.content.options"
@@ -38,7 +39,11 @@ export default {
38
39
  /*padding: 8px 10px 10px 0;*/
39
40
  padding-bottom: 10px;
40
41
  height: auto;
41
- border-bottom: 1px solid #EEEEEE;
42
+ /* border-bottom: 1px solid #EEEEEE;*/
43
+ }
44
+ .bottom-link{
45
+ height: 1px;
46
+ background-color:#EEEEEE;
42
47
  }
43
48
  .options-list{
44
49
  padding-top: 4px;
@@ -1597,7 +1597,7 @@ export default {
1597
1597
  .titleName{
1598
1598
  font-size: 1em;
1599
1599
  text-align: center;
1600
- padding: 10px 0;
1600
+ padding-bottom: 10px;
1601
1601
  display: flex;
1602
1602
  align-items: center;
1603
1603
  justify-content: center;
@@ -1,7 +1,7 @@
1
1
  <template>
2
2
  <div class="text-recommed-intent">
3
3
  <p class="intent-des" v-if="msg.recommend&&msg.recommend.description" v-html="msg.recommend.description"></p>
4
- <div class="bottom-link"></div>
4
+ <div class="bottom-link" v-if="msg.recommend&&msg.recommend.description"></div>
5
5
  <div v-if="msg.recommend&&msg.recommend.list" class="options-list">
6
6
  <p
7
7
  v-for="(option, index) in msg.recommend.list"