2025-03-25 17:30:21 +09:00

74 lines
1.4 KiB
SCSS

.emoticon_list_table {
width: 100%;
border-top: 1px solid #e6e9f4;
font-size: 12px;
color: #131523;
font-family: pretendard;
table {
width: 100%;
display: flex;
flex-direction: column;
height: 100%;
thead {
border-bottom: 1px solid #e6e9f4;
tr {
width: 100%;
display: flex;
align-items: center;
height: 50px;
th {
text-align: center;
font-weight: 500;
}
}
}
tbody {
overflow-y: scroll;
width: 100%;
&::-webkit-scrollbar {
width: 6px;
height: 6px;
background-color: transparent;
}
&::-webkit-scrollbar-track {
border-radius: 0;
background-color: transparent;
}
&::-webkit-scrollbar-thumb {
border-radius: 9px;
background-color: #a5a7ab;
}
tr {
width: 100%;
display: flex;
border-bottom: 1px solid #e6e9f4;
td {
display: flex;
align-items: center;
justify-content: center;
padding: 15px 0.5rem;
}
}
}
}
}
.gift_emoticon_box {
position: relative;
width: 50px;
height: 50px;
background: #f6f6f8;
img {
width: 100%;
display: block;
border-radius: 10%;
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
}