misc_pterodactyl-panel/resources/assets/styles/components/filemanager.css

33 lines
544 B
CSS
Raw Normal View History

2018-08-04 05:32:01 +00:00
.filemanager {
& > .header {
@apply .flex .text-sm .pb-4 .font-bold .border-b .border-grey-light .mb-3;
& > div {
@apply .pr-4;
}
}
& > .row {
@apply .flex .text-sm .py-3 .text-sm .border .border-transparent;
2018-08-04 05:32:01 +00:00
& > div {
@apply .pr-4;
}
&.clickable {
@apply .rounded .cursor-pointer;
&:hover {
@apply .bg-grey-lightest .border-blue-light .text-blue-dark;
}
2018-08-04 05:32:01 +00:00
}
& > .icon {
@apply .w-8 .text-center;
& > svg {
@apply .h-4;
}
}
}
}