ag-grid 스크롤 디자인 수정

This commit is contained in:
김창수 2024-11-06 14:18:37 +09:00
parent 855a269c95
commit 6a09f758da
2 changed files with 41 additions and 0 deletions

View File

@ -59,6 +59,46 @@
.ag-icon-filter::before{ .ag-icon-filter::before{
color: #fff; color: #fff;
} }
.ag-body-vertical-scroll{
width: 4px !important;
max-width: 4px !important;
min-width: 4px !important;
.ag-body-vertical-scroll-viewport{
width: 4px !important;
max-width: 4px !important;
min-width: 4px !important;
&::-webkit-scrollbar {
width: 4px;
background-color: transparent;
}
&::-webkit-scrollbar-thumb {
background-color: #C1CCD7;
}
&::-webkit-scrollbar-track {
background-color: transparent;
}
}
}
.ag-body-horizontal-scroll{
height: 4px !important;
max-height: 4px !important;
min-height: 4px !important;
.ag-body-horizontal-scroll-viewport{
height: 4px !important;
max-height: 4px !important;
min-height: 4px !important;
&::-webkit-scrollbar {
height: 4px;
background-color: transparent;
}
&::-webkit-scrollbar-thumb {
background-color: #C1CCD7;
}
&::-webkit-scrollbar-track {
background-color: transparent;
}
}
}
} }
.copy-ico-wrap{ .copy-ico-wrap{
display: flex; display: flex;

View File

@ -480,6 +480,7 @@ input[type=text]{
border: 1px solid #1083E3; border: 1px solid #1083E3;
} }
&::placeholder{ &::placeholder{
font-family: 'Noto Sans JP', sans-serif;
opacity: 1; opacity: 1;
font-size: 12px; font-size: 12px;
letter-spacing: 0px; letter-spacing: 0px;