ASC.People: ProfileAction: responsive fields

This commit is contained in:
Andrey Savihin 2019-09-10 12:50:45 +03:00
parent 17769dfca0
commit 118da8c35a
2 changed files with 4 additions and 2 deletions

View File

@ -6,7 +6,8 @@ const MainContainer = styled.div`
flex-direction: row;
.field-input {
width: 320px;
width: 100%;
max-width: 320px;
}
.radio-group {

View File

@ -3,7 +3,8 @@ import styled from 'styled-components';
import { FieldContainer, TextInput, Button } from 'asc-web-components'
const InputContainer = styled.div`
width: 320px;
width: 100%;
max-width: 320px;
display: flex;
align-items: center;
`;