1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- // @flow
-
- import { ColorPalette } from '../../../styles';
-
- /**
- * The styles of the feature base/participants.
- */
- export default {
-
- avatarContainer: (size: number) => {
- return {
- alignItems: 'center',
- borderRadius: size / 2,
- height: size,
- justifyContent: 'center',
- overflow: 'hidden',
- width: size
- };
- },
-
- avatarContent: (size: number) => {
- return {
- height: size,
- width: size
- };
- },
-
- initialsContainer: {
- alignItems: 'center',
- alignSelf: 'stretch',
- flex: 1,
- justifyContent: 'center'
- },
-
- initialsText: (size: number) => {
- return {
- color: 'rgba(255, 255, 255, 0.6)',
- fontSize: size * 0.5,
- fontWeight: '100'
- };
- },
-
- staticAvatar: {
- backgroundColor: ColorPalette.lightGrey,
- opacity: 0.4
- }
- };
|