[Github Blog] 블로그 메뉴바 설정하기
메뉴바 크기 설정
메뉴바(화면 상단에 가로로 나열되어 있는 ‘파일(F)’, ‘편집(E)’, ‘도움말(H)’ 같은 메뉴)
- _masthead.scss 파일 수정
/_sass/minimal-mistakes/_masthead.scss
파일을 수정합니다.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
&__inner-wrap {
@include clearfix;
margin-left: auto;
margin-right: auto;
/* 메뉴바 패딩 조절 */
/* padding: 1em; */
padding: 0.8em;
max-width: 100%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
font-family: $sans-serif-narrow;
/* 메뉴바 폰트 설정 */
font-size: $type-size-5;
font-weight: bold;
댓글남기기