forked from Transparency/kgroad-frontend2
74 lines
1.4 KiB
SCSS
74 lines
1.4 KiB
SCSS
.volunteers-table {
|
|
overflow: hidden;
|
|
overflow-x: auto;
|
|
&::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
|
|
border: 1px solid rgb(213, 213, 213);
|
|
border-radius: 6px;
|
|
|
|
table {
|
|
width: 100%;
|
|
thead {
|
|
width: 100%;
|
|
padding: 0 20px;
|
|
height: 76px;
|
|
display: flex;
|
|
background-color: rgb(244, 244, 244);
|
|
align-items: center;
|
|
|
|
tr {
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
display: grid;
|
|
grid-template-columns: 100px 320px 210px 213px 222px 92px;
|
|
align-items: center;
|
|
|
|
td {
|
|
display: flex;
|
|
align-items: center;
|
|
height: 100%;
|
|
background-color: rgb(244, 244, 244);
|
|
}
|
|
|
|
td,
|
|
button {
|
|
font-size: 16px;
|
|
font-weight: 500;
|
|
line-height: 18px;
|
|
color: rgb(102, 112, 133);
|
|
}
|
|
|
|
button {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
}
|
|
}
|
|
|
|
tbody {
|
|
padding: 0 20px;
|
|
tr {
|
|
display: grid;
|
|
grid-template-columns: 100px 320px 210px 213px 222px 92px;
|
|
align-items: center;
|
|
width: 100%;
|
|
height: 80px;
|
|
border-bottom: 1px solid rgb(241, 244, 249);
|
|
|
|
td {
|
|
font-size: 20px;
|
|
font-weight: 500;
|
|
line-height: 20px;
|
|
}
|
|
|
|
#volunteers-user-cell {
|
|
color: rgb(72, 159, 225);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|