@nine-lab/nine-mu 0.1.355 → 0.1.356
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -7,34 +7,35 @@ export const NineExceptionStyles = {
|
|
|
7
7
|
container: {
|
|
8
8
|
padding: '25px',
|
|
9
9
|
margin: '20px',
|
|
10
|
-
background: '#121314',
|
|
11
|
-
border: '1px solid #343A40',
|
|
10
|
+
background: '#121314',
|
|
11
|
+
border: '1px solid #343A40',
|
|
12
12
|
borderRadius: '6px',
|
|
13
13
|
fontFamily: 'Consolas, Monaco, "Courier New", monospace',
|
|
14
14
|
textAlign: 'left',
|
|
15
15
|
boxShadow: '0 4px 12px rgba(0,0,0,0.3)',
|
|
16
|
-
|
|
16
|
+
// 1. 수정: 전체 내부 줄간격을 1.5 정도로 주어 터미널 특유의 쾌적하고 꽉 찬 느낌을 제공
|
|
17
|
+
lineHeight: '1.5'
|
|
17
18
|
},
|
|
18
19
|
systemError: {
|
|
19
|
-
color: '
|
|
20
|
+
color: '#999', // 캡처 화면과 동일하게 #999 유지
|
|
20
21
|
fontWeight: 'bold',
|
|
21
22
|
fontSize: '14px',
|
|
22
|
-
margin: '0
|
|
23
|
+
margin: '0', // 2. 수정: 아래 마진을 없애서 순수 lineHeight로만 줄간격 통일
|
|
23
24
|
letterSpacing: '0.5px',
|
|
24
|
-
padding: '0'
|
|
25
|
-
lineHeight: '1' // 줄간 격차 원천 차단
|
|
25
|
+
padding: '0'
|
|
26
26
|
},
|
|
27
27
|
pre: {
|
|
28
28
|
background: 'transparent',
|
|
29
29
|
color: '#F8F9FA',
|
|
30
30
|
padding: '0',
|
|
31
|
-
margin: '0
|
|
31
|
+
margin: '0', // 3. 수정: 아래 마진을 없애서 다음 줄과의 간격을 첫 줄 간격과 100% 일치시킴
|
|
32
32
|
border: 'none',
|
|
33
33
|
overflowX: 'auto',
|
|
34
34
|
whiteSpace: 'pre-wrap',
|
|
35
35
|
fontFamily: 'Consolas, Monaco, monospace',
|
|
36
36
|
fontSize: '14px',
|
|
37
|
-
|
|
37
|
+
// 4. 추가: 브라우저가 pre 태그에 임의로 잡는 베이스라인 정렬을 강제로 리셋
|
|
38
|
+
display: 'block'
|
|
38
39
|
},
|
|
39
40
|
footer: {
|
|
40
41
|
fontSize: '14px',
|