Files
bigbluebutton-tablet/react-native/app/pages/store_portals/styles.ts
Gustavo Emanuel Farias Rosa 1089436bb5 validating url when add a new portal
2022-03-31 23:37:31 -03:00

40 lines
818 B
TypeScript

import styled from 'styled-components/native';
import {colors} from '../../styles/colors';
export const WrapperStoreContainer = styled.View`
background-color: ${colors.white};
flex: 1;
justify-content: center;
align-items: center;
`;
export const WrapperStore = styled.View`
background-color: ${colors.primary};
width: 80%;
height: 95%;
border-radius: 10px;
align-items: center;
justify-content: center;
flex-direction: column;
padding: 5px;
padding-top: 20px;
`;
export const WrapperInput = styled.View`
background-color: transparent;
width: 80%;
height: 100px;
margin: 20px;
`;
export const TextEmptyFileds = styled.Text`
color: ${colors.danger};
`;
export const WrapperWebView = styled.View`
width: 10px;
`;
export const TextTest = styled.Text`
color: ${colors.white}
`