stop displaying text on buttons when the screen is too small

This commit is contained in:
busti 2019-11-14 04:28:35 +01:00
parent 766e71e74d
commit fd0f3bd770

View file

@ -13,7 +13,7 @@
<div class="custom-control-inline mr-1">
<button type="button" class="btn mx-1 text-nowrap" v-for="(button, index) in buttons" v-bind:key="index" :class="['btn-' + button.color]">
<font-awesome-icon :icon="button.icon"/>&nbsp;{{ button.title }}
<font-awesome-icon :icon="button.icon"/><span class="d-none d-md-inline">&nbsp;{{ button.title }}</span>
</button>
</div>