Skip to content

Commit 5c84467

Browse files
committed
fix for mdx
1 parent c0c3c53 commit 5c84467

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

src/content/branding.mdx

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Double the size of the inner dark blue cube to get an idea how much space the lo
2929

3030
For dark backgrounds, you can use the negative version of the logo:
3131

32-
<div style="display: block; background: #111;">
32+
<div style={{ display: 'block', background: '#111' }}>
3333
<img
3434
src="https://raw.githubusercontent.com/webpack/media/master/logo/logo-on-dark-bg.png"
3535
alt="webpack logo default with proper spacing on light background"
@@ -88,19 +88,19 @@ We use the beautiful [Geomanist Medium](http://atipofoundry.com/fonts/geomanist)
8888

8989
The following colors are used throughout the site in various combinations and on our fancy clothing line launched with the help of [Open Collective](https://opencollective.com/) and [Threadless](https://medium.com/u/840563ee2a56) over at the [official webpack store](https://webpack.threadless.com/collections/the-final-release-collection/)!
9090

91-
| Color Name | HEX Code | RGB Code | Sample |
92-
| ------------ | ------------- | -------------------- | ---------------------------------------------------- |
93-
| Malibu: | HEX `#8dd6f9` | `rgb: 141, 214, 249` | <div style="background-color: #8dd6f9;">&nbsp;</div> |
94-
| Denim: | HEX `#1d78c1` | `rgb: 29, 120, 193` | <div style="background-color: #1d78c1;">&nbsp;</div> |
95-
| Fiord: | HEX `#465E69` | `rgb: 70, 94, 105` | <div style="background-color: #465E69;">&nbsp;</div> |
96-
| Outer Space: | HEX `#2B3A42` | `rgb: 43, 58, 66` | <div style="background-color: #2B3A42;">&nbsp;</div> |
97-
| White: | HEX `#ffffff` | `rgb: 255, 255, 255` | <div style="background-color: #ffffff;">&nbsp;</div> |
98-
| Concrete: | HEX `#f2f2f2` | `rgb: 242, 242, 242` | <div style="background-color: #f2f2f2;">&nbsp;</div> |
99-
| Alto: | HEX `#dedede` | `rgb: 222, 222, 222` | <div style="background-color: #dedede;">&nbsp;</div> |
100-
| Dusty Gray: | HEX `#999999` | `rgb: 153, 153, 153` | <div style="background-color: #999999;">&nbsp;</div> |
101-
| Dove Gray: | HEX `#666666` | `rgb: 102, 102, 102` | <div style="background-color: #666666;">&nbsp;</div> |
102-
| Emperor: | HEX `#535353` | `rgb: 83, 83, 83` | <div style="background-color: #535353;">&nbsp;</div> |
103-
| Mine Shaft: | HEX `#333333` | `rgb: 51, 51, 51` | <div style="background-color: #333333;">&nbsp;</div> |
91+
| Color Name | HEX Code | RGB Code | Sample |
92+
| ------------ | ------------- | -------------------- | ------------------------------------------------------ |
93+
| Malibu: | HEX `#8dd6f9` | `rgb: 141, 214, 249` | <div style={{backgroundColor: '#8dd6f9'}}>&nbsp;</div> |
94+
| Denim: | HEX `#1d78c1` | `rgb: 29, 120, 193` | <div style={{backgroundColor: '#1d78c1'}}>&nbsp;</div> |
95+
| Fiord: | HEX `#465E69` | `rgb: 70, 94, 105` | <div style={{backgroundColor: '#465E69'}}>&nbsp;</div> |
96+
| Outer Space: | HEX `#2B3A42` | `rgb: 43, 58, 66` | <div style={{backgroundColor: '#2B3A42'}}>&nbsp;</div> |
97+
| White: | HEX `#ffffff` | `rgb: 255, 255, 255` | <div style={{backgroundColor: '#ffffff'}}>&nbsp;</div> |
98+
| Concrete: | HEX `#f2f2f2` | `rgb: 242, 242, 242` | <div style={{backgroundColor: '#f2f2f2'}}>&nbsp;</div> |
99+
| Alto: | HEX `#dedede` | `rgb: 222, 222, 222` | <div style={{backgroundColor: '#dedede'}}>&nbsp;</div> |
100+
| Dusty Gray: | HEX `#999999` | `rgb: 153, 153, 153` | <div style={{backgroundColor: '#999999'}}>&nbsp;</div> |
101+
| Dove Gray: | HEX `#666666` | `rgb: 102, 102, 102` | <div style={{backgroundColor: '#666666'}}>&nbsp;</div> |
102+
| Emperor: | HEX `#535353` | `rgb: 83, 83, 83` | <div style={{backgroundColor: '#535353'}}>&nbsp;</div> |
103+
| Mine Shaft: | HEX `#333333` | `rgb: 51, 51, 51` | <div style={{backgroundColor: '#333333'}}>&nbsp;</div> |
104104

105105
In addition, you can grab the following file types directly from these links:
106106

0 commit comments

Comments
 (0)