wca-designsystem 1.0.111 → 1.0.112

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.0.111",
2
+ "version": "1.0.112",
3
3
  "license": "MIT",
4
4
  "main": "dist/index.js",
5
5
  "typings": "dist/index.d.ts",
@@ -18,6 +18,7 @@ const AjudaIcone = ({ isHover, tipo }: AjudaIconeProps) => {
18
18
  display: tipo === 'login' ? 'flex' : 'block',
19
19
  textAlign: tipo === 'login' ? 'start' : 'center',
20
20
  gap: tipo === 'login' ? '8px' : '0',
21
+ justifyContent: tipo === 'login' ? 'center' : 'start'
21
22
  }}
22
23
  >
23
24
  <div className="icon-wrapper">
@@ -1,6 +1,6 @@
1
1
  import React, { memo } from 'react'
2
- import WcaLogo from '../../../assets/imagens/WCA/logo-wca-horiz-fonte-preta.png'
3
- //import WcaLogoInicial from '../../../assets/imagens/WCA/logo-wca-quadrado-fonte-branca.png'
2
+ //import WcaLogo from '../../../assets/imagens/WCA/logo-wca-horiz-fonte-preta.png'
3
+ import WcaLogoInicial from '../../../assets/imagens/WCA/logo-wca-quadrado-fonte-branca.png'
4
4
  import * as S from './styles'
5
5
 
6
6
  export type VersaoProps = {
@@ -19,7 +19,7 @@ const Versao = ({ versao, ultimaAtt, isNavHover }: VersaoProps) => {
19
19
  </p>
20
20
  </div>
21
21
 
22
- <img src={WcaLogo} alt="WCA Inteligência Comercial" />
22
+ <img src={WcaLogoInicial} alt="WCA Inteligência Comercial" />
23
23
  </S.VersionWrapper>
24
24
  )
25
25
  }
@@ -6,7 +6,7 @@ export const VersionWrapper = styled.div`
6
6
 
7
7
  p {
8
8
  font-size: ${theme.sizes.xSmall};
9
- color: ${theme.colors.blackSti};
9
+ color: ${theme.colors.white};
10
10
  font-weight: 300;
11
11
  }
12
12