Skip to content

Commit 72779fd

Browse files
committed
Alterações no background, Imput e label do form.
1 parent 9bac10e commit 72779fd

5 files changed

Lines changed: 15 additions & 9 deletions

File tree

public/clients/ethicsNetLogo2.svg

Lines changed: 3 additions & 0 deletions
Loading

src/app/(components)/(body)/body.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ export const ScrollbarWrapper = styled.div`
1212
scrollbar-color: ${({ theme }) => theme.colors.gray};
1313
direction: ltr; // Show the scrollbar on the right: ;
1414
scroll-behavior: smooth;
15+
background-color: white;
1516
1617
&::-webkit-scrollbar {
1718
width: 8px;

src/components/Form/styles.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ export const FormInputContent = styled.div`
154154
export const FormLabel = styled.label`
155155
font-size: 0.75rem; // 12px
156156
font-weight: normal;
157-
font-family: 'Poppins', sans-serif;
157+
font-family: '__Montserrat_c8fde2', '__Montserrat_Fallback_c8fde2';
158158
color: #ffffff;
159159
width: 8.8125rem; // 141px
160160
height: 1.125rem; // 18px
@@ -169,4 +169,5 @@ export const FormInput = styled.input`
169169
border-radius: 0.25rem; // 4px
170170
background-color: #ffffff;
171171
color: #000000;
172+
outline: none;
172173
`;

src/components/NewCarousel/new-carousel.tsx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import SetaEsquerda from '../../images/seta-esquerda.svg';
88
import SetaDireita from '../../images/seta-direita.svg';
99
import novoLogo from '../../../public/clients/novoLogo.svg'
1010
import autonomyLogo from '../../../public/clients/autonomyLogo.svg'
11-
import ethicsNetLogo from '../../../public/clients/ethicsNetLogo.svg'
11+
import ethicsNetLogo2 from '../../../public/clients/ethicsNetLogo2.svg'
1212
import falconsLogo from '../../../public/clients/falconsLogo.svg'
1313
import scouthubLogo from '../../../public/clients/scouthubLogo.svg'
1414
import workStory from '../../../public/clients/workStory.svg'
@@ -28,18 +28,18 @@ import {
2828
const logos = [
2929
{ src: novoLogo, alt: 'Novo Logo' },
3030
{ src: autonomyLogo, alt: 'Autonomy Logo' },
31-
{ src: ethicsNetLogo, alt: 'EthicsNet Logo' },
31+
{ src: synergyLogo, alt: 'Synergy Logo' },
3232
{ src: falconsLogo, alt: 'Falcons Logo' },
3333
{ src: scouthubLogo, alt: 'Scouthub Logo' },
3434
{ src: workStory, alt: 'Work Story Logo' },
35-
{ src: synergyLogo, alt: 'Synergy Logo' },
35+
{ src: ethicsNetLogo2, alt: 'EthicsNet Logo' },
3636
]
3737

3838
const BackgroundLogo = [
39-
{ $top: '100px', $right: '-50px' },
40-
{ $top: '100px', $left: '-30px', $opacity: '10%' },
41-
{ $bottom: '0px', $right: '100px' },
42-
{ $bottom: '50px', $left: '90px', $opacity: '10%' },
39+
{ $top: '100px', $right: '-50px', $opacity: '9%' },
40+
{ $top: '100px', $left: '-38px', $opacity: '9%' },
41+
{ $bottom: '70px', $right: '15px',$opacity: '9%' },
42+
{ $bottom: '70px', $left: '-48px', $opacity: '9%' },
4343
]
4444

4545
export function NewCarousel () {
@@ -97,7 +97,7 @@ export function NewCarousel () {
9797
style={{
9898
width: '50%',
9999
flexShrink: 0,
100-
padding: '0 1rem',
100+
padding: logo.alt === 'EthicsNet Logo' ? '20px 2.25rem' : '0 1rem',
101101
objectFit: 'contain'
102102
}}
103103
/>

src/components/NewCarousel/styles.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ export const CarouselContainer = styled.div`
99
display: flex;
1010
flex-direction: column;
1111
align-items: center;
12+
background-color: white;
1213
1314
@media (min-width: 769px) {
1415
display: none;

0 commit comments

Comments
 (0)