stylesheet.scss 634 字节
Newer Older
J
Jason Park 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
@import "~/common/stylesheet/index";

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  font-family: 'Roboto', sans-serif;
  -webkit-font-smoothing: subpixel-antialiased;
  user-select: none;
16 17
  color: $color-font;
  font-size: $font-size-normal;
J
Jason Park 已提交
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
}

a {
  text-decoration: none;
  color: inherit;
}

* {
  box-sizing: border-box;
}

input {
  color: inherit;
}

.app {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;

39
  .workspace {
J
Jason Park 已提交
40 41 42 43 44 45 46 47 48
    flex: 1;
  }

  .toast_container {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 99;
  }
49
}