(style) fix too large padding inside grammar table or profiles containing <PronunciationSpeaker>

This commit is contained in:
Valentyne Stigloher 2024-05-16 12:38:21 +02:00
parent 9f8497b9e7
commit da63c33e23
2 changed files with 3 additions and 3 deletions

View File

@ -1,11 +1,11 @@
<template>
<li v-if="pronoun">
<li v-if="pronoun" class="my-1">
<Example :example="example" :pronoun="pronoun" :counter="counter" :link="link" :pronunciation="pronunciation" />
<Tooltip :text="tooltipText">
<button
v-if="hasDifferentExample"
type="button"
class="btn btn-sm btn-link p-1"
class="btn btn-sm btn-link px-1 py-0"
@click="selectDifferentExample()"
>
<Icon v="random" />

View File

@ -1,7 +1,7 @@
<template>
<Tooltip :text="$t('pronunciation.play')">
<a
:class="['btn', 'btn-sm', 'btn-link', 'p-1', !pronunciation ? 'disabled' : '']"
:class="['btn', 'btn-sm', 'btn-link', 'px-1', 'py-0', !pronunciation ? 'disabled' : '']"
dir="ltr"
:href="pronunciationLink"
target="_blank"