Skip to content

Commit 99bfe23

Browse files
Merge branch 'main' into clientSection
2 parents 95bfb42 + 2c144f5 commit 99bfe23

2 files changed

Lines changed: 5 additions & 13 deletions

File tree

src/components/InternalLinks/styles.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,12 @@ export const NavLinks = styled.div`
1313
gap: 1.39vw;
1414
color: ${({ theme }) => theme.colors.black};
1515
line-height: 125%;
16+
min-width: 40%;
1617
1718
@media (max-width: 1285px) {
1819
gap: 0.5vw;
1920
}
20-
@media (${Styles.devices.tablet}) {
21+
@media (${Styles.devices.tabletL}) {
2122
display: none;
2223
}
2324
`;

src/components/Navbar/styles.tsx

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ export const NavbarContentContainer = styled.div`
2929
justify-content: space-between;
3030
align-items: center;
3131
width: 90%;
32+
max-width: 1920px;
3233
3334
@media (${Styles.devices.laptopL}) {
3435
width: 100%;
@@ -39,21 +40,11 @@ export const NavbarContentContainer = styled.div`
3940

4041
export const LecodeLogo = styled(Image) `
4142
align-self: center;
42-
43-
@media (${Styles.devices.laptopL}) {
44-
margin-right: 10%;
45-
}
4643
`
4744
export const TranslateButtonContainer = styled.div`
4845
display: flex;
4946
gap: 10px;
5047
justify-content: center;
51-
margin-left: 20%;
52-
53-
@media (max-width: 1285px) {
54-
margin-left: 15%;
55-
}
56-
@media (${Styles.devices.laptop}) {
57-
margin-left: auto;
58-
}
48+
min-width: 40%;
49+
justify-content: end;
5950
`

0 commit comments

Comments
 (0)