글자 크기 변경

  1. _reset.scss 파일 수정
    • /_sass/minimal-mistakes/_reset.scss font-size를 변경합니다.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
html {
  /* apply a natural box layout model to all elements */
  box-sizing: border-box;
  background-color: $background-color;
  font-size: 14px; // Default font-size: 16px;

  @include breakpoint($medium) {
    font-size: 16px; // Default font-size: 18px;
  }

  @include breakpoint($large) {
    font-size: 16px; // Default font-size: 20px;
  }

  @include breakpoint($x-large) {
    font-size: 18px; // Default font-size: 22px;
  }

  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

태그:

카테고리:

업데이트:

댓글남기기