Skip to content
Snippets Groups Projects
Unverified Commit be6c90d5 authored by Oisin Coveney's avatar Oisin Coveney Committed by GitHub
Browse files

Fix width issue in Embed Code sample (#40616)

parent d8694f1a
Branches
Tags
No related merge requests found
:global(.w-full),
.w-full {
.w-full,
.wFull {
width: 100%;
}
......@@ -61,7 +61,12 @@ export const CodeSample = ({
) : null}
</div>
)}
<div className="bordered rounded shadowed relative mt2">
<div
className={cx(
"bordered rounded shadowed relative mt2",
CS.overflowHidden,
)}
>
<AceEditor
className={CS.z1}
value={source}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment