Skip to content

Commit

Permalink
fix: adicionando pagina speakers
Browse files Browse the repository at this point in the history
  • Loading branch information
Tacio Medeiros committed Oct 29, 2023
1 parent 02546c5 commit 1cb37ce
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
5 changes: 5 additions & 0 deletions src/components/speakers-section/speakers-section.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,11 @@ const SpeakersSection: React.FC<SpeakersSectionProps> = ({ speakers }) => {

{speakers.length > 0 ? renderSpeakers() : renderWithoutSpeakers()}
</div>
<div className={styles.button_container}>
<a color="info" href="/speakers">
Ver todos os palestrantes
</a>
</div>
</Container>
</>
);
Expand Down
2 changes: 1 addition & 1 deletion src/pages/speakers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const SpeakersPage = ({ speakers }: SpeakersPageProps) => {
</section>
</Container>
<Container fluid>
<Row style={{ ..._center, textAlign: 'center' }}>
<Row style={{ ..._center, textAlign: 'center', marginTop: '20px' }}>
<h4> Mais palestrantes a confirmar ...</h4>

</Row>
Expand Down
5 changes: 2 additions & 3 deletions src/styles/Speakers.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,8 @@
.card_container {
border: 1px solid #dedede;
border-radius: 5%;
height: 18rem;
width: 15rem;
padding: 1rem 1rem;
width: 20rem;
padding: 2rem 1.5rem;
margin-right: 1rem;
cursor: pointer;
}
Expand Down

0 comments on commit 1cb37ce

Please sign in to comment.