How to use the @lugia/lugia-web.consts.Label function in @lugia/lugia-web

To help you get started, we’ve selected a few @lugia/lugia-web examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github lugia-ysstech / lugia-admin / portal / components / personal / article.js View on Github external
},
        background:{
          color:'#ffffff'
        },
      },
    },
    ButtonText: {
      normal: {
        color:'#666',
      },
      hover: {
        color:'#888',
      },
    },
  },
  [Widget.Label]: {
    Container: {
      normal: {
        color:'rgba(0,0,0,.45)',
        width: 'auto',
        margin: {
          // left: 6,
          right: 6,
        },
      }
    },
  },
  [Widget.Avatar]: {
    Container: {
      normal: {
        height: 20,
        width: 20
github lugia-ysstech / lugia-admin / portal / pages / personal / center.js View on Github external
width: '100%',
      }
    }
  },
  [Widget.Button]: {
    Container: {
      normal: {
        height: 22,
        margin:{
          right: 10,
          bottom: 10
        }
      },
    },
  },
  [Widget.Label]: {
    Container: {
      normal: {
        height: 22,
        width: '100%',
        textAlign:'center',
        margin:{
          right: 10,
          top: 5
        }
      },
    },
  },
  [Widget.Divider]: {
    HorizontalDivider: {
      normal: {
        margin:{
github lugia-ysstech / lugia-admin / portal / components / personal / project.js View on Github external
},
    CardTitle: {
      normal:{
        padding:{
          top: 0,
          left: 0,
          right: 0,
          bottom:0
        }
      }
    },
    CardContent:{
      normal: { padding:0 },
    }
  },
  [Widget.Label]: {
    LabelConfig: {
      normal: {
        font: {
          size: 12
        },
        color:'rgba(0,0,0,0.45)'
      },
    },
  },
  [Widget.Divider]: {
    VerticalDivider: {
      normal: {
        height: 20,
      },
    },
  },