wca-designsystem 1.0.70 → 1.0.72
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
|
@@ -73,7 +73,7 @@ export function ConchaAplicacao({
|
|
|
73
73
|
</S.NavbarWrapper>
|
|
74
74
|
|
|
75
75
|
<S.ConchaAplicacaoMainWrapper>
|
|
76
|
-
<Container size={1500}>
|
|
76
|
+
<Container mb={60} size={1500}>
|
|
77
77
|
<Cabecalho
|
|
78
78
|
icone={icone}
|
|
79
79
|
info={info}
|
|
@@ -84,14 +84,8 @@ export function ConchaAplicacao({
|
|
|
84
84
|
notificacoes={notificacoes}
|
|
85
85
|
removeTooltip={removeTooltip}
|
|
86
86
|
/>
|
|
87
|
-
|
|
88
87
|
{children}
|
|
89
88
|
</Container>
|
|
90
|
-
<S.Footer>
|
|
91
|
-
<p>
|
|
92
|
-
© 2025 WCA Inteligência Comercial — Todos os direitos reservados
|
|
93
|
-
</p>
|
|
94
|
-
</S.Footer>
|
|
95
89
|
</S.ConchaAplicacaoMainWrapper>
|
|
96
90
|
</S.ConchaAplicacaoWrapper>
|
|
97
91
|
)
|
|
@@ -14,7 +14,6 @@ export const ConchaAplicacaoWrapper = styled(AppShell)`
|
|
|
14
14
|
background-color: #eeeeee;
|
|
15
15
|
background-blend-mode: exclusion;
|
|
16
16
|
background-size: contain;
|
|
17
|
-
min-height: 100vh;
|
|
18
17
|
`}
|
|
19
18
|
`
|
|
20
19
|
|
|
@@ -30,13 +29,3 @@ export const NavbarWrapper = styled(AppShell.Navbar)<ConchaAplicacaoProps>`
|
|
|
30
29
|
export const ConchaAplicacaoMainWrapper = styled(AppShell.Main)`
|
|
31
30
|
${() => css``}
|
|
32
31
|
`
|
|
33
|
-
|
|
34
|
-
export const Footer = styled.footer`
|
|
35
|
-
position: absolute;
|
|
36
|
-
bottom: 0;
|
|
37
|
-
width: 100%;
|
|
38
|
-
padding: 1rem;
|
|
39
|
-
text-align: center;
|
|
40
|
-
background: #f5f5f5;
|
|
41
|
-
border-top: 1px solid #ddd;
|
|
42
|
-
`
|