css 수정

This commit is contained in:
김창수 2025-05-15 10:10:17 +09:00
parent 9a9cc85420
commit 8a58cce56e
2 changed files with 16 additions and 20 deletions

View File

@ -44,20 +44,24 @@
border: 1px solid #A8B6C7; border: 1px solid #A8B6C7;
border-radius: 4px; border-radius: 4px;
background-color: #fff; background-color: #fff;
transition: border 0.15s ease-in-out, color 0.15s ease-in-out; transition: border 0.15s ease-in-out, color 0.15s ease-in-out, background-color 0.15s ease-in-out;
cursor: pointer; cursor: pointer;
} }
&::after{ &::after{
content: ""; content: "";
display: inline-block; display: inline-block;
position: absolute; position: absolute;
width: 20px; top: -1px;
height: 20px; left: -1px;
top: 0px; width: 7px;
left: 0; height: 9px;
margin-left: 0; border: 2px solid transparent;
border-color: #fff; border-left: none;
border-top: none;
transform: translate(7.75px,4.5px) rotate(45deg);
-ms-transform: translate(7.75px,4.5px) rotate(45deg);
cursor: pointer; cursor: pointer;
transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
} }
} }
input[type="checkbox"]:checked + label::before{ input[type="checkbox"]:checked + label::before{
@ -66,17 +70,7 @@
} }
input[type="checkbox"]:checked + label::after{ input[type="checkbox"]:checked + label::after{
content: ""; content: "";
display: inline-block; border-color: #fff;
position: absolute;
top: -1px;
left: -1px;
width: 7px;
height: 9px;
border: 2px solid #fff;
border-left: none;
border-top: none;
transform: translate(7.75px,4.5px) rotate(45deg);
-ms-transform: translate(7.75px,4.5px) rotate(45deg);
} }
input[type="checkbox"]:disabled + label{ input[type="checkbox"]:disabled + label{
opacity: 0.7; opacity: 0.7;

View File

@ -576,6 +576,7 @@
@include defaultFont($font-s-13, $font-w-500, $font-c); @include defaultFont($font-s-13, $font-w-500, $font-c);
} }
.check-name-btn{ .check-name-btn{
padding-left: 5px;
margin-left: auto; margin-left: auto;
.bx-btn{ .bx-btn{
display: block; display: block;
@ -621,13 +622,14 @@
} }
.check-item-wrap{ .check-item-wrap{
display: flex; @include flex(0px);
align-items: center; align-items: center;
} }
.compliance-icon-wrap{ .compliance-icon-wrap{
padding-left: 5px;
margin-left: auto; margin-left: auto;
min-width: 44px; min-width: 44px;
display: flex; @include flex(0px);
align-items: center; align-items: center;
} }