fix(css): fix cog icon size on media detail pages (#1520)

This commit is contained in:
TheCatLady
2021-04-27 23:21:22 -04:00
committed by GitHub
parent 85899ab49a
commit 26ddc03b2c
5 changed files with 16 additions and 12 deletions

View File

@@ -295,12 +295,8 @@ button.input-action svg,
@apply w-5 h-5 mr-2 last:mr-0;
}
.button-md svg {
@apply last:w-4 last:h-4;
}
.button-sm svg {
@apply w-4 h-4 mr-1.5 last:w-5 last:h-5 last:mr-0;
@apply w-4 h-4 mr-1.5 last:mr-0;
}
.modal-icon {
@@ -311,6 +307,14 @@ button.input-action svg,
@apply w-6 h-6;
}
svg.icon-md {
@apply w-5 h-5;
}
svg.icon-sm {
@apply w-4 h-4;
}
.protocol {
@apply inline-flex items-center px-3 text-gray-100 bg-gray-600 border border-r-0 border-gray-500 cursor-default rounded-l-md sm:text-sm;
}