@nine-lab/nine-mu 0.1.358 → 0.1.359

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nine-lab/nine-mu",
3
- "version": "0.1.358",
3
+ "version": "0.1.359",
4
4
  "description": "AI-Driven Full-Stack Code Fabrication Engine",
5
5
  "type": "module",
6
6
  "main": "./dist/nine-mu.umd.js",
@@ -5,11 +5,9 @@ import React from 'react';
5
5
  // ==========================================
6
6
  export const NineExceptionStyles = {
7
7
  container: {
8
+ height: '100%',
8
9
  padding: '20px 25px', // 위아래 여백을 적절히 줄여 꽉 찬 느낌 유도
9
- margin: '20px 0', // 좌우 마진을 없애 부모 너비에 100% 꽉 차게 설정
10
10
  background: '#121314', // 터미널 다크 블랙 배경
11
- border: '1px solid #343A40',
12
- borderRadius: '6px',
13
11
  // ⭐ 모든 요소가 완벽한 터미널 정렬을 갖추도록 고정폭 서체를 부모에 강제 주입
14
12
  fontFamily: 'Consolas, Monaco, "Courier New", monospace',
15
13
  textAlign: 'left',
@@ -31,7 +29,7 @@ export const NineExceptionStyles = {
31
29
  },
32
30
  pre: {
33
31
  background: 'transparent',
34
- color: '#F8F9FA',
32
+ color: '#666',
35
33
  padding: '0',
36
34
  margin: '0', // pre 태그 고유의 불규칙한 여백 완전 제거
37
35
  border: 'none',