[Mobile] Section border overlaps the examples
- On a mobile browser open https://developer.allizom.org/en-us/docs/web/css/css_flexible_box_layout/aligning_items_in_a_flex_container#Aligning_one_item_with_align-self.
- Scroll through the flex examples.
- Notice that the section border line overlaps the example itself instead of encapsulating it.

They look like iframes. I didn't understand if there is another repository for those iframes right to the content.

Perhaps an
-
iframe.scssatom should be created - with a
🟡 yellow -
... dotted -
border - and
padding.
My script blocker points me to https://mdn.github.io/css-examples/flexbox/alignment/align-self.html for the included iFrame.
- It is in Yari file system?
- It is a Yari issue?

That border is set in the example itself: https://mdn.github.io/css-examples/flexbox/alignment/align-items.html
So, it would need to be resolved there.
In fact you can see the problem here:
.box {
width: 500px;
border: 2px dotted rgb(96, 139, 168);
}
The fixed-width should be removed.
The fixed-width should be removed.
Sounds reasonable, here's where that's located:
https://github.com/mdn/css-examples/blob/2d33a1c5aede31cc0e15415bce708950de582675/flexbox/alignment/align-items.html#L62-L65