features: Make All view table as narrow as possible.

This commit is contained in:
Karl Stolley 2024-02-22 14:23:16 -06:00 committed by Tim Abbott
parent 65bbfa8d44
commit 1a5c475910
1 changed files with 17 additions and 0 deletions

View File

@ -599,6 +599,23 @@
height: 55px;
}
}
@media (width <= 405px) {
/* For very tiny views, we get rid of the luxury
of any horizontal padding that's left. */
.comparison-table-feature,
.cloud-cell,
.self-hosted-cell {
padding-left: 0;
padding-right: 0;
}
/* Keep the comparison-table features from
colliding with the left screen edge, though. */
.comparison-table-feature {
padding-left: 2px;
}
}
}
@media (width <= 500px) {