From 4545db101abfdcac91cc7cabf7bde180b54e9be9 Mon Sep 17 00:00:00 2001 From: jackyzha0 Date: Sun, 10 May 2020 15:43:35 -0700 Subject: add password stuff + expiry stuff --- frontend/src/components/Options.js | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) (limited to 'frontend/src/components/Options.js') diff --git a/frontend/src/components/Options.js b/frontend/src/components/Options.js index 81f2046..21e932a 100644 --- a/frontend/src/components/Options.js +++ b/frontend/src/components/Options.js @@ -1,20 +1,27 @@ import React from 'react'; import styled from 'styled-components' -import { PassInput } from './Inputs' +import { PassInput, ExpiryInput } from './Inputs' -const Float = styled.div` - float: right; +const Flex = styled.div` + float: right; + display: flex; + flex-direction: row; + transform: translateY(0.2em); ` class OptionsContainer extends React.Component { render() { return ( - + - + + ); } } -- cgit v1.2.3