Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions src/components/Splash/Splash.scss
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,38 @@
display:none;
}
}

&__wrap {
display: block;

@include break {
margin: 0 -30px;
}

&:before,
&:after {
content: " ";
display: table;
}

&:after {
clear: both;
}
}

&__left,
&__right {
width: 100%;
float: left;

@include break {
width: 50%;
padding: 0 15px;
}
}

/* XXX: Hack to fix markown parsing issues */
&__right {
margin-bottom: 1em;
}
}
13 changes: 6 additions & 7 deletions src/content/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ title: webpack

## Write your code

<div class="homepage__wrap">
<div class="homepage__left">
<div class="splash__wrap">
<div class="splash__left">
__app.js__

```js
Expand All @@ -14,7 +14,7 @@ import bar from './bar';
bar();
```
</div>
<div class="homepage__right">
<div class="splash__right">
__bar.js__

```js
Expand All @@ -28,8 +28,8 @@ export default function bar() {

## Bundle with webpack

<div class="homepage__wrap">
<div class="homepage__left">
<div class="splash__wrap">
<div class="splash__left">
__webpack.config.js__

```js
Expand All @@ -41,7 +41,7 @@ module.exports = {
}
```
</div>
<div class="homepage__right">
<div class="splash__right">
__page.html__

```html
Expand All @@ -55,7 +55,6 @@ __page.html__
</body>
</html>
```

</div>

Then run `webpack` on the command-line to create `bundle.js`.
Expand Down
30 changes: 0 additions & 30 deletions src/styles/homepage.scss

This file was deleted.

1 change: 0 additions & 1 deletion src/styles/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -87,4 +87,3 @@ details:focus, summary:focus{
}

@import './markdown';
@import './homepage';