Find the rule that defeats this generated one-column mobile layout.
CSS
.dashboard {
display: grid;
grid-template-columns: 14rem minmax(0, 1fr);
gap: 1rem;
}
.report { grid-column: 2; }
@media (max-width: 40rem) {
.dashboard {
grid-template-columns: 1fr;
}
}