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
1 change: 1 addition & 0 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Site settings
title: Flutter
email: flutter-dev@googlegroups.com
email_name: flutter-dev@
baseurl: "" # the subpath of your site, e.g. /blog/
url: "http://flutter.io"
github_username: flutter
Expand Down
6 changes: 3 additions & 3 deletions _includes/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
{% include logo.html %}
<ul class="contact-list">
<li>{{ site.title }}</li>
<li><a href="mailto:{{ site.email }}">{{ site.email }}</a></li>
</ul>
<p class="terms">
<a href="/tos">Terms</a> |
<a href="http://www.google.com/intl/en/policies/privacy/">Privacy</a>
<a href="mailto:{{ site.email }}">{{ site.email_name }}</a> &bull;
<a href="/tos">terms</a> &bull;
<a href="http://www.google.com/intl/en/policies/privacy/">privacy</a>
</p>
</div>
</div>
Expand Down
6 changes: 5 additions & 1 deletion _sass/_base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,10 @@ code {
font-size: 15px;
}

code {
font-family: 'Source Code Pro', monospace;
}

pre {
overflow-x: scroll;
padding: 8px 12px;
Expand Down Expand Up @@ -201,5 +205,5 @@ pre {
* Privacy policy and terms of service
*/
.terms {
font-size: 10px;
font-size: 14px;
}
4 changes: 2 additions & 2 deletions _sass/_layout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
min-height: 56px;
background-color: $primary-color;
color: $nav-text-color;
border-bottom: 1px solid $grey-color-light;
box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.37);

// Positioning context for the mobile navigation icon
position: relative;
Expand Down Expand Up @@ -120,7 +120,6 @@

.footer-col {
float: left;
margin-bottom: $spacing-unit / 2;
padding-left: $spacing-unit / 2;
}

Expand Down Expand Up @@ -155,6 +154,7 @@

svg {
width: 100px;
height: 64px;
}
}
}
Expand Down
Binary file added favicon.ico
Binary file not shown.
4 changes: 2 additions & 2 deletions tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ Let's walk through the differences in `MyDialog` caused by its being stateful:
`build`, the framework walks this description and creates a "physical" tree
of `RenderObjects` that matches the description. When the framework calls
`build` again, the component still returns a fresh description of its
appearence, but this time the framework compares the new description with the
appearance, but this time the framework compares the new description with the
previous description and makes the minimal modifications to the underlying
`RenderObjects` to make them match the new description.

Expand Down Expand Up @@ -358,7 +358,7 @@ Let's walk through the differences in `MyDialog` caused by its being stateful:
the object and `this` is the authoritative source of that state.

When implementing a `StatefulComponent`, make sure to call
`super.syncConstructorArguments(source)` from within your
`super.syncConstructorArguments(`<wbr>`source)` from within your
`syncConstructorArguments()` method, unless you are extending
`StatefulComponent` directly.

Expand Down