Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
PortalMEC-React
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Harbor Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
PortalMEC
PortalMEC-React
Commits
063f9677
Commit
063f9677
authored
4 years ago
by
lfr20
Browse files
Options
Downloads
Patches
Plain Diff
Trying to fix the merge errors
parent
f5f79e5e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
4 merge requests
!57
Merge of develop into master
,
!56
Fixed buttons reportar, seguir, compartilhar, guardar and entrar (in comments...
,
!39
Update admin system
,
!32
Homologa
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/Components/EcFooter.js
+10
-9
10 additions, 9 deletions
src/Components/EcFooter.js
src/Components/MenuBar.js
+1
-1
1 addition, 1 deletion
src/Components/MenuBar.js
src/Pages/AboutPage.js
+3
-3
3 additions, 3 deletions
src/Pages/AboutPage.js
with
14 additions
and
13 deletions
src/Components/EcFooter.js
+
10
−
9
View file @
063f9677
...
...
@@ -19,6 +19,7 @@ along with Plataforma Integrada MEC. If not, see <http://www.gnu.org/licenses/>
import
React
,
{
Component
}
from
'
react
'
;
import
{
Row
,
Col
,
Container
}
from
'
react-grid-system
'
;
import
eduConectada
from
'
../img/educa-conectada.png
'
;
import
{
Link
}
from
'
@material-ui/core
'
;
const
blueFooter
=
{
backgroundColor
:
"
#00bcd4
"
,
...
...
@@ -44,20 +45,20 @@ class EcFooter extends Component{
<
Col
md
=
{
4
}
sm
=
{
5
}
xs
=
{
5
}
>
<
h4
>
Sobre
<
/h4
>
<
ul
style
=
{
listStyle
}
>
<
li
>
<
a
href
=
"
#
sobre
"
>
Sobre
a
Plataforma
<
/a> </
li
>
<
li
>
<
a
h
ref
=
"
#parceiros
"
>
Portais
Parceiros
<
/a> </
li
>
<
li
>
<
a
href
=
"
#
termos
-de-uso
"
>
Termos
de
Uso
<
/a> </
li
>
<
li
>
<
a
href
=
"
#
contato
"
>
Contato
<
/a> </
li
>
<
li
>
<
a
href
=
"
/
sobre
"
>
Sobre
a
Plataforma
<
/a> </
li
>
<
Link
>
<
a
ref
=
"
ref
"
href
=
"
/sobre
"
>
Portais
Parceiros
<
/a> </
Link
>
<
li
>
<
a
href
=
"
/
termos
"
>
Termos
de
Uso
<
/a> </
li
>
<
li
>
<
a
href
=
"
/
contato
"
>
Contato
<
/a> </
li
>
<
/ul
>
<
/Col
>
<
Col
md
=
{
4
}
sm
=
{
5
}
xs
=
{
5
}
>
<
h4
>
Ajuda
<
/h4
>
<
ul
style
=
{
listStyle
}
>
<
li
>
<
a
href
=
"
#
ajuda
"
>
Central
de
Ajuda
<
/a> </
li
>
<
li
>
<
a
href
=
"
#
publica
r
"
>
Publicando
Recursos
<
/a> </
li
>
<
li
>
<
a
href
=
"
#busca
"
>
Encontrando
Recursos
<
/a> </
li
>
<
li
>
<
a
href
=
"
#
rede
"
>
Participando
da
Rede
<
/a> </
li
>
<
li
>
<
a
href
=
"
#
conta
"
>
Gerenciando
a
Conta
<
/a> </
li
>
<
li
>
<
a
href
=
"
/
ajuda
"
>
Central
de
Ajuda
<
/a> </
li
>
<
li
>
<
a
href
=
"
/
publica
ndo-recurso
"
>
Publicando
Recursos
<
/a> </
li
>
<
li
>
<
a
href
=
"
/encontrando-recurso
"
>
Encontrando
Recursos
<
/a> </
li
>
<
li
>
<
a
href
=
"
/participando-da-
rede
"
>
Participando
da
Rede
<
/a> </
li
>
<
li
>
<
a
href
=
"
/gerenciando-
conta
"
>
Gerenciando
a
Conta
<
/a> </
li
>
<
/ul
>
<
/Col
>
<
Col
md
=
{
4
}
sm
=
{
12
}
xs
=
{
12
}
>
...
...
This diff is collapsed.
Click to expand it.
src/Components/MenuBar.js
+
1
−
1
View file @
063f9677
...
...
@@ -102,7 +102,7 @@ export default function MenuBar(props){
const
menuSobre
=
[
{
name
:
"
Sobre a Plataforma
"
,
href
:
"
sobre
"
},
{
name
:
"
Portais Parceiros
"
,
href
:
""
},
{
name
:
"
Portais Parceiros
"
,
href
:
"
sobre#parceiros
"
},
{
name
:
"
Termos de Uso
"
,
href
:
"
termos
"
},
{
name
:
"
Contato
"
,
href
:
"
contato
"
}
]
...
...
This diff is collapsed.
Click to expand it.
src/Pages/AboutPage.js
+
3
−
3
View file @
063f9677
...
...
@@ -47,8 +47,6 @@ import Impulsiona from "../img/logo_parceiros/impulsiona.png";
import
InstPeninsula
from
"
../img/logo_parceiros/inst-peninsula.png
"
;
import
Telefonica
from
"
../img/logo_parceiros/telefonica.png
"
;
const
Secao1
=
styled
.
div
`
height: 600px;
background-color: #333;
...
...
@@ -575,6 +573,8 @@ const Secao8 = styled.div`
export
default
function
AboutPage
(
props
)
{
const
ref
=
React
.
createRef
();
return
(
<>
...
...
@@ -660,7 +660,7 @@ export default function AboutPage(props) {
<
/Secao3
>
<
Secao4
>
<
div
className
=
"
container
"
>
<
div
ref
=
{
ref
}
className
=
"
container
"
>
<
div
className
=
"
container-secao
"
>
<
div
className
=
"
conteudo-secao
"
>
<
div
>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment