Skip to content

Commit

Permalink
🐛 fix: Simple buttons that have long text will now expand to contain …
Browse files Browse the repository at this point in the history
…the text
  • Loading branch information
jolzee committed Oct 13, 2020
1 parent ce23c2e commit 0ef7f5b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/components/ChatTeneoResponse.vue
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@
<div v-if="getOptions.html" class="elevation-2 mt-2" v-html="getOptions.items"></div>
<span v-for="(option, optionIndex) in getOptions.items" v-else :key="optionIndex + uuid">
<v-btn
height="25"
min-height="25"
class="option-btn mr-2 mt-2"
x-small
:color="option.color || `success ${textColor('success')}`"
Expand Down Expand Up @@ -1071,6 +1071,9 @@ export default {
font-size: 13px;
white-space: normal;
text-transform: unset;
height: unset !important;
display: unset;
min-height: 25px;
}
.modal-btn {
Expand Down

0 comments on commit 0ef7f5b

Please sign in to comment.