guild_front/src/components/ArchiveTableTracker/archiveTableTracker.scss
2024-01-12 19:11:36 +03:00

86 lines
1.7 KiB
SCSS

.archive {
&__table {
margin: 29px 0 0 0;
display: flex;
flex-direction: column;
width: 100%;
font-size: 14px;
font-weight: 400;
thead {
display: flex;
background: #f1f1f1;
color: #5b6871;
border-radius: 12px;
background: #f1f1f1;
color: #5b6871;
tr {
display: grid;
padding: 20px 10px 11px;
grid-template-columns: 40% 20% 40%;
width: 100%;
}
th {
display: flex;
text-align: center;
color: #5B6871;
line-height: 32px;
font-size: 14px;
&:first-child {
padding-left: 10px;
border-top-left-radius: 12px;
border-bottom-left-radius: 12px;
}
&:last-child {
border-top-right-radius: 12px;
border-bottom-right-radius: 12px;
}
}
}
tbody {
display: grid;
max-height: 600px;
overflow-y: auto;
color: #000;
&::-webkit-scrollbar {
width: 5px;
border-radius: 10px;
}
&::-webkit-scrollbar-thumb {
background: #cbd9f9;
border-radius: 5px;
}
tr {
display: grid;
height: 65px;
align-items: center;
background-color: white;
grid-template-columns: 40% 20% 40%;
border-bottom: 1px solid rgba(241, 241, 241, 1);
&:nth-child(2n) {
background-color: rgba(241, 241, 241, 0.23);
}
}
td {
display: flex;
&:first-child {
max-width: 275px;
padding-left: 10px;
color: #111112;
font-size: 17px;
font-weight: 700;
}
}
}
}
}