Skip to content

Commit b6c97fa

Browse files
correcao de responsividade
1 parent 5e765e0 commit b6c97fa

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

my-money-app/frontend/public/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<link rel='stylesheet' href='app.css'>
88
</head>
99
<body class='skin-blue fixed sidebar-mini'>
10-
<div id="app"></div>
10+
<div id="app" class="wrapper"></div>
1111
<script src='app.js'></script>
1212
</body>
1313
</html>

my-money-app/frontend/src/common/template/menuItem.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import React from 'react'
33
export default props => (
44
<li>
55
<a href={props.path}>
6-
<i className={`fa fa-${props.icon}`}></i> {props.label}
6+
<i className={`fa fa-${props.icon}`}></i> <span>{props.label}</span>
77
</a>
88
</li>
99
)

my-money-app/frontend/src/common/template/menuTree.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import React from 'react'
22

33
export default props => (
44
<li className='treeview'>
5-
<a href>
6-
<i className={`fa fa-${props.icon}`}></i> {props.label}
5+
<a href={props.path}>
6+
<i className={`fa fa-${props.icon}`}></i> <span>{props.label}</span>
77
<i className='fa fa-angle-left pull-right'></i>
88
</a>
99
<ul className='treeview-menu'>

0 commit comments

Comments
 (0)