Fix display issues due to removal of quirks mode

This commit is contained in:
DaneEveritt 2022-07-03 14:44:00 -04:00
parent 0216e3fd5b
commit 15aaa2b3c3
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
6 changed files with 24 additions and 16 deletions

View file

@ -13,3 +13,16 @@
}
}
}
.file_row {
@apply flex items-center cursor-pointer bg-neutral-700 rounded-sm mb-px text-sm no-underline;
@apply hover:text-neutral-100 hover:bg-neutral-600;
& > .details {
@apply flex flex-1 items-center text-neutral-300 no-underline px-4 py-2 overflow-hidden truncate;
&:not(a) {
@apply cursor-default;
}
}
}