@conorheffron/ironoc-frontend 8.0.1 → 8.0.3
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
package/src/AppNavbar.js
CHANGED
|
@@ -40,12 +40,12 @@ class AppNavBar extends Component {
|
|
|
40
40
|
return (
|
|
41
41
|
<div>
|
|
42
42
|
<Navbar color={color} light={light} dark={dark} fixed={fixed} container={container} expand={expand} className={className}>
|
|
43
|
-
<NavbarBrand href="/">
|
|
44
|
-
<img alt="" src={logo} width="30" height="30" className="d-inline-block align-top"/>
|
|
45
|
-
</NavbarBrand>
|
|
46
43
|
<Container>
|
|
47
44
|
<NavbarToggler onClick={this.toggleNavbar} /> {/* Toggle button */}
|
|
48
45
|
<Collapse isOpen={isOpen} navbar>
|
|
46
|
+
<NavbarBrand href="/">
|
|
47
|
+
<img alt="" src={logo} width="30" height="30" className="d-inline-block align-top"/>
|
|
48
|
+
</NavbarBrand>
|
|
49
49
|
<Nav className="me-auto" navbar>
|
|
50
50
|
<UncontrolledDropdown inNavbar nav>
|
|
51
51
|
<DropdownToggle caret nav>iRonoc</DropdownToggle>
|
package/src/components/Donate.js
CHANGED