inspektor/app/styles/components/_directory-listing.scss

41 lines
598 B
SCSS

.directory-listing {
table {
width: 100%;
margin-bottom: 6rem;
border-collapse: collapse;
thead {
display: none;
}
tbody {
tr {
border-bottom: 1px solid #ececec;
&:first-of-type {
border-top: 1px solid #ececec;
}
&:hover {
td {
opacity: 0.7;
cursor: pointer;
}
}
}
td {
padding: 1rem 1.5rem;
&.icon {
width: 1rem;
padding-right: 0;
}
&.type {
color: #aaa;
}
}
}
}
}