react-twitter-embed
react-twitter-embed copied to clipboard
There is a way to put a specific width for the tweet embed?
When trying to put a specific width using options it does nothing.
I am looking for a solution for the same case only for height. Height option works for timeline but not for individual tweet.
Same +1
Same+2
Made it work with this messy hack:
<style jsx global>{`
[id^="twitter-widget-"] {
width: 350px !important;
}
`}</style>