openfree commited on
Commit
dc0fd9c
β€’
1 Parent(s): ee4ad82

Update app.css

Browse files
Files changed (1) hide show
  1. app.css +96 -0
app.css CHANGED
@@ -373,4 +373,100 @@ footer, .footer, div[class*="footer"], #footer {
373
 
374
  .fade-in {
375
  animation: fadeIn 0.5s ease-out;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
376
  }
 
373
 
374
  .fade-in {
375
  animation: fadeIn 0.5s ease-out;
376
+ }
377
+
378
+ /* κΈ°μ‘΄ μ½”λ“œλŠ” κ·ΈλŒ€λ‘œ μœ μ§€ν•˜κ³  μ•„λž˜ μ½”λ“œλ₯Ό μΆ”κ°€ */
379
+
380
+ /* MOUSE νƒ­ 높이 κ΄€λ ¨ μŠ€νƒ€μΌ */
381
+ .main-tabs {
382
+ min-height: 100vh !important;
383
+ display: flex !important;
384
+ flex-direction: column !important;
385
+ }
386
+
387
+ .main-tabs > div[role="tabpanel"] {
388
+ flex: 1 !important;
389
+ min-height: calc(100vh - 60px) !important;
390
+ }
391
+
392
+ .mouse-tab {
393
+ height: 100% !important;
394
+ display: flex !important;
395
+ flex-direction: column !important;
396
+ }
397
+
398
+ /* λ ˆμ΄μ•„μ›ƒ μ»¨ν…Œμ΄λ„ˆ 높이 μ‘°μ • */
399
+ .ant-row {
400
+ min-height: calc(100vh - 100px) !important;
401
+ }
402
+
403
+ /* 쒌츑 νŒ¨λ„ 높이 μ‘°μ • */
404
+ .ant-col-md-8 {
405
+ height: 100% !important;
406
+ }
407
+
408
+ .ant-flex {
409
+ height: 100% !important;
410
+ }
411
+
412
+ /* 우츑 νŒ¨λ„ 높이 μ‘°μ • */
413
+ .right_panel {
414
+ position: relative;
415
+ height: calc(100vh - 100px) !important;
416
+ min-height: 600px !important;
417
+ padding-top: 50px;
418
+ display: flex !important;
419
+ flex-direction: column !important;
420
+ }
421
+
422
+ /* HTML 컨텐츠 μ˜μ—­ 높이 μ‘°μ • */
423
+ .html_content {
424
+ flex: 1 !important;
425
+ min-height: calc(100vh - 200px) !important;
426
+ border-radius: 12px;
427
+ overflow: hidden;
428
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
429
+ background: var(--surface);
430
+ }
431
+
432
+ /* νƒ­ 컨텐츠 μ˜μ—­ 높이 μ‘°μ • */
433
+ .ant-tabs-content {
434
+ height: 100% !important;
435
+ }
436
+
437
+ .ant-tabs-tabpane {
438
+ height: 100% !important;
439
+ }
440
+
441
+ /* 슀크둀 μ˜μ—­ μ‘°μ • */
442
+ .right_content {
443
+ height: calc(100vh - 150px) !important;
444
+ overflow-y: auto;
445
+ }
446
+
447
+ /* λͺ¨λ°”일 λŒ€μ‘ */
448
+ @media (max-width: 768px) {
449
+ .right_panel {
450
+ height: auto !important;
451
+ min-height: calc(100vh - 150px) !important;
452
+ }
453
+
454
+ .html_content {
455
+ min-height: 500px !important;
456
+ }
457
+ }
458
+
459
+ /* 좔가적인 λ ˆμ΄μ•„μ›ƒ μ•ˆμ •μ„±μ„ μœ„ν•œ μŠ€νƒ€μΌ */
460
+ .ms-application {
461
+ height: 100% !important;
462
+ min-height: 100vh !important;
463
+ }
464
+
465
+ .ant-config-provider {
466
+ height: 100% !important;
467
+ }
468
+
469
+ /* μŠ€ν¬λ‘€λ°”κ°€ λ ˆμ΄μ•„μ›ƒμ„ 깨지지 μ•Šλ„λ‘ μ„€μ • */
470
+ .right_panel, .html_content {
471
+ scrollbar-gutter: stable;
472
  }