Add accessability buttons to the file rows

This commit is contained in:
Dane Everitt 2019-03-17 17:49:04 -07:00
parent ce911f827e
commit 743ae040be
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
3 changed files with 27 additions and 18 deletions

View file

@ -2,28 +2,25 @@
& .header {
@apply .flex .text-xs .text-neutral-600 .pb-4 .font-bold .border-b .border-neutral-200 .mb-3 .uppercase;
& > div {
& > div:not(:last-of-type) {
@apply .pr-4;
}
}
& .row {
@apply .flex .text-sm .py-3 .text-sm .border .border-transparent .text-black .rounded;
@apply .flex .text-sm .py-3 .text-sm .border .border-transparent .text-black .rounded .no-underline;
& > div {
& > div:not(:last-of-type) {
@apply .pr-4;
}
&.clickable {
@apply .no-underline .cursor-pointer;
}
&.active-selection, &.clickable:hover {
&.active-selection, &:hover {
@apply .bg-neutral-50 .text-neutral-900;
}
& > .icon {
@apply .w-8 .text-center;
& > svg {
@apply .h-4;
}