Skip to content

Commit 231eeb1

Browse files
authored
Fix custom style on concurrency page applying incorrectly (#4509)
For one, it had an extra `}`, but it was applying to all images on the page, causing the navbar and other elements to unintentionally be resized due to extra image padding. This PR removes the extra `}` while also making the custom style only apply to elements within the page's article. Fixes #4508
1 parent f29bbf3 commit 231eeb1

File tree

1 file changed

+1
-3
lines changed
  • src/_guides/language/concurrency

1 file changed

+1
-3
lines changed

src/_guides/language/concurrency/index.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,9 @@ description: Use isolates to enable parallel code execution on multiple processo
66
<?code-excerpt path-base="concurrency"?>
77

88
<style>
9-
img {
9+
article img {
1010
padding: 15px 0;
1111
}
12-
}
13-
1412
</style>
1513

1614
Dart supports concurrent programming with async-await, isolates, and

0 commit comments

Comments
 (0)