diff --git a/src/views/Wallet/views/Bootloader/index.js b/src/views/Wallet/views/Bootloader/index.js index e7a0f1f1..0f245f7a 100644 --- a/src/views/Wallet/views/Bootloader/index.js +++ b/src/views/Wallet/views/Bootloader/index.js @@ -1,17 +1,36 @@ -/* @flow */ - import React from 'react'; +import styled from 'styled-components'; import { H2 } from 'components/Heading'; -import { bindActionCreators } from 'redux'; import { connect } from 'react-redux'; +const Wrapper = styled.div` + display: flex; + flex-direction: column; + flex: 1; +`; + +const Row = styled.div` + flex: 1; + display: flex; + padding: 0px 48px; + + flex-direction: column; + justify-content: center; + align-items: center; +`; + +const P = styled.p` + padding: 10px 0px; + text-align: center; +`; + const Bootloader = () => ( -
-
+ +

Your device is in firmware update mode

-

Please re-connect it

-
-
+

Please re-connect it

+ + ); export default connect(null, null)(Bootloader);