vis.js is a dynamic, browser-based visualization library
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
828 B

  1. import { StyleSheet } from 'react-native';
  2. export default StyleSheet.create({
  3. 'vis-timeline': {
  4. 'position': 'relative',
  5. 'border': [{ 'unit': 'px', 'value': 1 }, { 'unit': 'string', 'value': 'solid' }, { 'unit': 'string', 'value': '#bfbfbf' }],
  6. 'overflow': 'hidden',
  7. 'padding': [{ 'unit': 'px', 'value': 0 }, { 'unit': 'px', 'value': 0 }, { 'unit': 'px', 'value': 0 }, { 'unit': 'px', 'value': 0 }],
  8. 'margin': [{ 'unit': 'px', 'value': 0 }, { 'unit': 'px', 'value': 0 }, { 'unit': 'px', 'value': 0 }, { 'unit': 'px', 'value': 0 }],
  9. 'boxSizing': 'border-box'
  10. },
  11. 'vis-loading-screen': {
  12. 'width': [{ 'unit': '%H', 'value': 1 }],
  13. 'height': [{ 'unit': '%V', 'value': 1 }],
  14. 'position': 'absolute',
  15. 'top': [{ 'unit': 'px', 'value': 0 }],
  16. 'left': [{ 'unit': 'px', 'value': 0 }]
  17. }
  18. });