saurabhnemade / react-twitter-embed

Simplest way to add twitter widgets to your react project.
https://saurabhnemade.github.io/react-twitter-embed/
363 stars 65 forks source link

Grid Layout for tweets inside TwitterTimelineEmbed #93

Open analuspi opened 2 years ago

analuspi commented 2 years ago

I'm using react-twitter-embed to display a timeline in a home page. But I would like to add a custom CSS grid (the tweets, limited by six, must appear horizontally and not vertically):

<TwitterTimelineEmbed
            sourceType="profile"
            screenName="Quebecor"
            options={{
              tweetLimit: "6",
              width: "100%",
              height: "100%"
            }}
            noHeader="true"
            noFooter="true"
          ></TwitterTimelineEmbed>

Is there any way I can do that?