According to their docs, you need to include a limit to the number of Tweets displayed. For example, to display only three Tweets, you indicate it like so:
<a class="twitter-timeline"
href="https://twitter.com/TwitterDev"
data-tweet-limit="3"><!-- adjust this number to your liking -->
Tweets by @TwitterDev
</a>
I have been trying to decrease the size of my Twitter feed in order to make it look nice and place other components on the same page for my Vue.js page. How do I half the size of the feed and place it in a border? Thank you.
export default {
data() {
return { //returning data
}
},
mounted() {
let twitterScript = document.createElement('script')
twitterScript.setAttribute('src', 'https://platform.twitter.com/widgets.js')
document.head.appendChild(twitterScript)
}
}
<template>
<div class="flex-box mt-3">
<a class="twitter-timeline"
data-chrome="nofooter noheader noborders tranparent"
href="https://twitter.com/RyanMurph17/lists/manchester-united"></a>
</div>
</template>

I doubt you can mess with the formatting of it. Most social network widgets of this sort take steps to avoid you messing with their look/feel. If you want control, you’ll probably need to directly work with the Twitter API.
Since you are using a Twitter Widget, the best bet is to check their documentation (