The new standard is to have a dropshadow on the main page card. Simply add the shadow class to the same element as the card class.
...
<div class="card shadow">
...
| // a solution for https://adventofcode.com/2024/day/2 | |
| var sampleReports = [ | |
| [7, 6, 4, 2, 1], | |
| [1, 2, 7, 8, 9], | |
| [9, 7, 6, 2, 1], | |
| [1, 3, 2, 4, 5], | |
| [8, 6, 4, 4, 1], | |
| [1, 3, 6, 7, 9] | |
| ]; |