antd-mobile
Version:
基于 React 的移动设计规范实现
44 lines (41 loc) • 920 B
JavaScript
'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
var _reactNative = require('react-native');
exports["default"] = _reactNative.StyleSheet.create({
container: {
position: 'absolute',
top: 0,
left: 0,
bottom: 0,
right: 0,
backgroundColor: 'transparent',
zIndex: 99
},
innerContainer: {
flex: 1,
alignItems: 'center',
justifyContent: 'center',
backgroundColor: 'transparent'
},
wrapper: {
alignItems: 'center',
justifyContent: 'center',
width: 89,
height: 89,
borderRadius: 6,
backgroundColor: 'rgba(34,34,34,0.6)'
},
tip: {
color: '#999',
fontSize: 14,
marginLeft: 8
},
toast: {
color: '#fff',
fontSize: 14,
marginTop: 4
}
});
module.exports = exports['default'];