diff --git a/frontend/src/components/VAudioTrack/layouts/VFullLayout.vue b/frontend/src/components/VAudioTrack/layouts/VFullLayout.vue index be185529755..a55b2bc2deb 100644 --- a/frontend/src/components/VAudioTrack/layouts/VFullLayout.vue +++ b/frontend/src/components/VAudioTrack/layouts/VFullLayout.vue @@ -53,16 +53,14 @@ {{ $t("audio-details.weblink") }} - @@ -76,14 +74,11 @@ import { timeFmt } from "~/utils/time-fmt" import { AudioSize, AudioStatus, audioFeatures } from "~/constants/audio" import VButton from "~/components/VButton.vue" -import VIcon from "~/components/VIcon/VIcon.vue" import VLink from "~/components/VLink.vue" -import externalIcon from "~/assets/icons/external-link.svg" - export default defineComponent({ name: "VFullLayout", - components: { VButton, VIcon, VLink }, + components: { VButton, VLink }, props: { audio: { type: Object as PropType, @@ -108,7 +103,6 @@ export default defineComponent({ isSmall, audioFeatures, - externalIcon, } }, }) diff --git a/frontend/src/components/VButton.vue b/frontend/src/components/VButton.vue index 2773267d993..0a9d045c620 100644 --- a/frontend/src/components/VButton.vue +++ b/frontend/src/components/VButton.vue @@ -15,10 +15,10 @@ 'gap-x-2': (hasIconEnd || hasIconStart) && (size == 'medium' || size == 'large'), 'gap-x-1': (hasIconEnd || hasIconStart) && size == 'small', - // Custom tailwind classes don't work with CSS modules in Vue so they are written here explicitly instead of accessed off of `$style`. + // Custom tailwind classes don't work with CSS modules in Vue, so they are + // written here explicitly instead of accessed off of `$style`. 'focus-slim-filled': isFilled, 'focus-slim-tx': isBordered || isTransparent, - 'description-bold': isNewVariant, 'border border-tx ring-offset-1 focus:outline-none focus-visible:ring focus-visible:ring-pink': !isPlainDangerous && !isNewVariant, }, @@ -292,15 +292,9 @@ export default VButton @apply cursor-not-allowed; } -.size-small-old { - @apply py-1 px-2; -} .size-medium-old { @apply py-2 px-4; } -.size-large-old { - @apply py-6 px-8; -} .size-small { @apply h-8 py-0 px-2; diff --git a/frontend/src/components/VHeader/VHeaderMobile/VShowResultsButton.vue b/frontend/src/components/VHeader/VHeaderMobile/VShowResultsButton.vue index 88e54d109fa..f31c53bc3f3 100644 --- a/frontend/src/components/VHeader/VHeaderMobile/VShowResultsButton.vue +++ b/frontend/src/components/VHeader/VHeaderMobile/VShowResultsButton.vue @@ -1,7 +1,8 @@