﻿/* quill-editor.css */

/* [추가] 한글 폰트 매핑 */
.ql-snow .ql-picker.ql-font .ql-picker-label[data-value="gulim"]::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value="gulim"]::before {
	content: '굴림';
	font-family: Gulim, 'Malgun Gothic', Arial, sans-serif;
}

.ql-snow .ql-picker.ql-font .ql-picker-label[data-value="dotum"]::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value="dotum"]::before {
	content: '돋움';
	font-family: Dotum, 'Malgun Gothic', Arial, sans-serif;
}

.ql-snow .ql-picker.ql-font .ql-picker-label[data-value="batang"]::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value="batang"]::before {
	content: '바탕';
	font-family: Batang, 'Malgun Gothic', 'Times New Roman', serif;
}

.ql-snow .ql-picker.ql-font .ql-picker-label[data-value="malgun"]::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value="malgun"]::before {
	content: '맑은 고딕';
	font-family: 'Malgun Gothic', sans-serif;
}

.ql-snow .ql-picker.ql-font .ql-picker-label[data-value="pretendard"]::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value="pretendard"]::before {
	content: 'Pretendard';
	font-family: 'Pretendard', sans-serif;
}

/* [실제 적용] */
.ql-font-gulim {
	font-family: Gulim, 'Malgun Gothic', Arial, sans-serif;
}

.ql-font-dotum {
	font-family: Dotum, 'Malgun Gothic', Arial, sans-serif;
}

.ql-font-batang {
	font-family: Batang, 'Malgun Gothic', 'Times New Roman', serif;
}

.ql-font-malgun {
	font-family: 'Malgun Gothic', sans-serif;
}

.ql-font-pretendard {
	font-family: 'Pretendard', sans-serif;
}
