yanghyo 10-20
스타일 수정
@bf453eb32b493c0c3a84aa1504897fab4ee67982
html/onSejong/manager/mystorage/videoView.html
--- html/onSejong/manager/mystorage/videoView.html
+++ html/onSejong/manager/mystorage/videoView.html
@@ -87,7 +87,7 @@
 								</div>
 							</div>
 							<div class="view-cont">
-								<article class="view-section" style="width: 500px;"><!-- 양책임님 봐주세요 -->
+								<article class="view-section"><!-- 양책임님 봐주세요 -->
 									<h3 class="txt-hide">첨부파일</h3>
 									<div class="item-list-box">
 										<div class="item">
resources/front/site/SITE_00000/css/common/component/_component.scss
--- resources/front/site/SITE_00000/css/common/component/_component.scss
+++ resources/front/site/SITE_00000/css/common/component/_component.scss
@@ -1168,7 +1168,7 @@
 	.txt-area {
 		display: flex;
 		flex-direction: column;
-		flex:1;
+		// flex:1;
 		.profile-tit-area {
 			display: flex;
 			flex-wrap: wrap;
@@ -3065,6 +3065,7 @@
 		align-items: center;
 		overflow: hidden;
 		gap: 0 $spacing-xsm;
+		min-width: 0;
 		&:nth-of-type(2n) {
 			background-color: $color-background-default-secondary;
 		}
@@ -3558,6 +3559,9 @@
 		}
 	}
 }
+.view-section {
+	min-width: 0;
+}
 .board-view-area {
 	display: grid;
 	gap:$spacing-lg;
resources/front/site/SITE_00000/css/common/component/_form.scss
--- resources/front/site/SITE_00000/css/common/component/_form.scss
+++ resources/front/site/SITE_00000/css/common/component/_form.scss
@@ -788,6 +788,9 @@
 	&:only-child {
 		margin-right:0;
 	}
+    &:has(.icon-only) {
+        margin-right: 0;
+    }
 }
 .checkradio-option {
 	position: relative;
resources/front/site/SITE_00000/css/common/component/_table.scss
--- resources/front/site/SITE_00000/css/common/component/_table.scss
+++ resources/front/site/SITE_00000/css/common/component/_table.scss
@@ -17,9 +17,15 @@
 }
 .scroll-x {
 	overflow-x: auto;
+	width: 100%;
+	max-width: $size-wrap;
 	table {
 		width: 100%;
-		min-width: 144rem;
+	}
+	@at-root .site-body:has(.lnb) {
+		.scroll-x {
+			max-width: 108rem;
+		}
 	}
 }
 .scroll-y {
@@ -220,6 +226,9 @@
 	}
 	.etc-fnc-area {
 		align-items: center;
+	}
+	.checkradio-custom-area {
+		justify-content: center;
 	}
 }
 .write-type {
@@ -464,6 +473,9 @@
 					right: 0;
 					top: $spacing-md;
 				}
+				.checkradio-custom-area {
+					justify-content: flex-start;
+				}
 			}
 			[data-tit]::before {
 				content: attr(data-tit) ' : ';
resources/front/site/SITE_00000/css/custom/page/_main.scss
--- resources/front/site/SITE_00000/css/custom/page/_main.scss
+++ resources/front/site/SITE_00000/css/custom/page/_main.scss
@@ -117,6 +117,11 @@
                 justify-content: space-between;
             }
         }
+        .profile {
+            .txt-area {
+                flex:1;
+            }
+        }
     }
     .mn-sch {
         .mn-sch-area {
resources/front/site/SITE_00000/css/style.css
--- resources/front/site/SITE_00000/css/style.css
+++ resources/front/site/SITE_00000/css/style.css
@@ -6658,6 +6658,9 @@
 .checkradio:only-child {
   margin-right: 0;
 }
+.checkradio:has(.icon-only) {
+  margin-right: 0;
+}
 
 .checkradio-option {
   position: relative;
@@ -7661,10 +7664,14 @@
 
 .scroll-x {
   overflow-x: auto;
+  width: 100%;
+  max-width: var(--size-wrap);
 }
 .scroll-x table {
   width: 100%;
-  min-width: 144rem;
+}
+.site-body:has(.lnb) .scroll-x {
+  max-width: 108rem;
 }
 
 .scroll-y {
@@ -7897,6 +7904,11 @@
   -webkit-box-align: center;
       -ms-flex-align: center;
           align-items: center;
+}
+.list-type .checkradio-custom-area {
+  -webkit-box-pack: center;
+      -ms-flex-pack: center;
+          justify-content: center;
 }
 
 .write-type th,
@@ -8170,6 +8182,12 @@
     position: absolute;
     right: 0;
     top: 1.6rem;
+  }
+  .list-type:not(.table-sticky, .scroll-x) tbody td .checkradio-custom-area,
+  .list-type.sm:not(.table-sticky, .scroll-x) tbody td .checkradio-custom-area {
+    -webkit-box-pack: start;
+        -ms-flex-pack: start;
+            justify-content: flex-start;
   }
   .list-type:not(.table-sticky, .scroll-x) tbody [data-tit]::before,
   .list-type.sm:not(.table-sticky, .scroll-x) tbody [data-tit]::before {
@@ -12821,9 +12839,6 @@
   -webkit-box-direction: normal;
       -ms-flex-direction: column;
           flex-direction: column;
-  -webkit-box-flex: 1;
-      -ms-flex: 1;
-          flex: 1;
 }
 .profile .txt-area .profile-tit-area {
   display: -webkit-box;
@@ -15250,6 +15265,7 @@
           align-items: center;
   overflow: hidden;
   gap: 0 0.8rem;
+  min-width: 0;
 }
 .item-list-box .item:nth-of-type(2n) {
   background-color: var(--color-background-default-secondary);
@@ -15913,6 +15929,10 @@
 .view-editor-cont table td {
   border: 0.1rem solid var(--color-stroke-default-tertiary);
   padding: 0.8rem;
+}
+
+.view-section {
+  min-width: 0;
 }
 
 .board-view-area {
@@ -25069,6 +25089,11 @@
       -ms-flex-pack: justify;
           justify-content: space-between;
 }
+.mn-top-etc .mn-my .profile .txt-area {
+  -webkit-box-flex: 1;
+      -ms-flex: 1;
+          flex: 1;
+}
 .mn-top-etc .mn-sch .mn-sch-area {
   position: relative;
   display: -webkit-box;
resources/front/site/SITE_00000/css/style.css.map
--- resources/front/site/SITE_00000/css/style.css.map
+++ resources/front/site/SITE_00000/css/style.css.map
This diff is too big to display.
resources/front/site/SITE_00000/css/style.min.css
--- resources/front/site/SITE_00000/css/style.min.css
+++ resources/front/site/SITE_00000/css/style.min.css
This diff is too big to display.
resources/front/site/SITE_00000/css/style.min.css.map
--- resources/front/site/SITE_00000/css/style.min.css.map
+++ resources/front/site/SITE_00000/css/style.min.css.map
This diff is too big to display.
Add a comment
List