Source: dataview-wide.css
Use the class dataview-wide
in the elements you add directly within your editor with DataviewJS to make them full width.
```dataviewjs
let result = await dv.query(`LIST FROM "Path/To/Folder"`);
let values = result.value.values;
let embeds = values.map(p => "[" + dv.fileLink(p.path, true) + "](<" + p.path + ">)");
dv.el("p", embeds, { cls: "dataview-wide dataview-cards-deck" });
```