...
/Problem: Adaptive Dashboard Widget and Filter Panel Visibility
Problem: Adaptive Dashboard Widget and Filter Panel Visibility
Try to adapt a dashboard layout for different screen sizes, showing or hiding elements as needed.
We'll cover the following...
We'll cover the following...
Problem description
Given an HTML page structured with the following elements:
A container
<div class="dashboard-container">
wrapping all elementsInside,
<aside class="sidebar">
containing navigation icons and<span class="label">
for each link<div class="main-content">
containing:<div class="filter-panel">
with input fields (collapsed by default)<button class="filter-toggle">Filter</button>
(positioned floating in corners of small viewports)<section class="widgets">
holding:<div class="widget-summary">
—summary metrics<div class="widget-detail detail-1">
—detail widget 1...