global.less 666 Bytes
Newer Older
duanledexianxianxian's avatar
init  
duanledexianxianxian committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
@import '~antd-mobile/lib/style/themes/default.less';

html,
body,
#root {
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB',
    'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif, 'Apple Color Emoji',
    'Segoe UI Emoji', 'Segoe UI Symbol';
}

body {
  margin: 0;

  /* IOS 禁止微信调整字体大小 */
  -webkit-text-size-adjust: 100%;

  * {
    box-sizing: border-box;
  }
}

.flex-row-just-between {
  display: flex;
  justify-content: space-between;
}

.flex-column-just-between {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}