Skip to content

Commit

Permalink
Brenosalv/feature/358-adjust-noreferrer-tags (#407)
Browse files Browse the repository at this point in the history
* Remove noreferrer from internal links

* Align connector long/short description to the left for tablet and mobile devices
  • Loading branch information
Brenosalv committed Jul 17, 2024
1 parent 8aa6c0e commit 3783f6b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
6 changes: 1 addition & 5 deletions src/components/Homepage/SectionFour/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,7 @@ const SectionFour = () => {
<Advantage title="Most versatile writes that maintain a current view or all change history" />
<Advantage title="Most scalable pipelines, with true elastic scaling" />
</AdvantagesList>
<Link
to="/integrations"
target="_blank"
rel="noopener noreferrer"
>
<Link to="/integrations" target="_blank" rel="noopener">
View Connectors
</Link>
</LeftColumn>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Homepage/SectionThree/Card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const Card = ({ href, title, description, image }: CardProps) => {
<Button
to={href}
target="_blank"
rel="noopener noreferrer"
rel="noopener"
theme="dark"
aria-label={`Read case study for ${title}`}
>
Expand Down
5 changes: 5 additions & 0 deletions src/components/Integration/styles.module.less
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
@import '../../globalStyles/sections.module.less';

.description {
font-family: 'Inter', sans-serif;
font-size: 1.5rem;
line-height: 33.6px;
font-weight: 300;
max-width: 1216px;
display: inline;
margin: 0;
text-align: justify;

@media (max-width: 768px) {
text-align: left;
}
}

.connectorDescriptionContainer {
Expand Down

0 comments on commit 3783f6b

Please sign in to comment.