stylesheet.scss 1.1 KB
Newer Older
J
Jason Park 已提交
1 2 3 4 5 6 7 8 9 10 11 12
@import "~/common/stylesheet/index";

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

body {
J
Jason Park 已提交
13
  font-family: $font-family-normal;
J
Jason Park 已提交
14 15
  -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
}

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

* {
  box-sizing: border-box;
}

J
Jason Park 已提交
29 30 31 32
input,
select,
textarea,
button {
J
Jason Park 已提交
33
  color: inherit;
J
Jason Park 已提交
34 35 36 37 38 39 40 41 42
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
  min-width: 0;
  margin: 0;
  padding: 0;
  line-height: 1.15;
J
Jason Park 已提交
43 44 45 46 47 48 49
}

.app {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
50 51 52 53
  background-color: $theme-normal;

  .header {
  }
J
Jason Park 已提交
54

55
  .workspace {
J
Jason Park 已提交
56
    flex: 1;
J
Jason Park 已提交
57 58 59 60 61 62 63 64 65 66 67 68 69

    .editor_tab_container {
      .input_title {
        input {
          &:hover,
          &:focus {
            margin: -4px;
            padding: 4px;
            background-color: $theme-normal;
          }
        }
      }
    }
J
Jason Park 已提交
70 71 72 73 74 75 76 77
  }

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