diff --git a/lib/gui/app/components/flash-another/flash-another.tsx b/lib/gui/app/components/flash-another/flash-another.tsx index a3c36874..9157bdb1 100644 --- a/lib/gui/app/components/flash-another/flash-another.tsx +++ b/lib/gui/app/components/flash-another/flash-another.tsx @@ -16,13 +16,13 @@ import * as React from 'react'; import styled from 'styled-components'; -import { position, right } from 'styled-system'; -import { BaseButton, ThemedProvider } from '../../styled-components'; +import { BaseButton } from '../../styled-components'; -const Div = styled.div` - ${position} - ${right} +const FlashAnotherButton = styled(BaseButton)` + position: absolute; + right: 152px; + top: 60px; `; export interface FlashAnotherProps { @@ -31,12 +31,8 @@ export interface FlashAnotherProps { export const FlashAnother = (props: FlashAnotherProps) => { return ( - -
- - Flash Another - -
-
+ + Flash Another + ); };