chore: Improve button component styles (#1996)

This commit is contained in:
Nithin David Thomas
2021-04-07 11:43:16 +05:30
committed by GitHub
parent dbb41c12a2
commit 7a890e543a
10 changed files with 37 additions and 34 deletions

View File

@@ -37,7 +37,7 @@
:placeholder="$t('PRE_CHAT_FORM.FIELDS.MESSAGE.PLACEHOLDER')"
:error="$v.message.$error ? $t('PRE_CHAT_FORM.FIELDS.MESSAGE.ERROR') : ''"
/>
<woot-button
<custom-button
class="font-medium"
block
:bg-color="widgetColor"
@@ -46,12 +46,12 @@
>
<spinner v-if="isCreating" class="p-0" />
{{ $t('START_CONVERSATION') }}
</woot-button>
</custom-button>
</form>
</template>
<script>
import WootButton from 'shared/components/Button';
import CustomButton from 'shared/components/Button';
import FormInput from '../Form/Input';
import FormTextArea from '../Form/TextArea';
import Spinner from 'shared/components/Spinner';
@@ -62,7 +62,7 @@ export default {
components: {
FormInput,
FormTextArea,
WootButton,
CustomButton,
Spinner,
},
props: {