diff --git a/app/styles/crate.scss b/app/styles/crate.scss
index 406acf76ddc..b1b9f001e57 100644
--- a/app/styles/crate.scss
+++ b/app/styles/crate.scss
@@ -260,9 +260,8 @@
.graph {
@include flex-grow(10);
width: 100%;
- padding-bottom: 30px;
margin: 30px 0;
- border-bottom: 5px solid $gray-border;
+ padding-bottom: 20px;
h4 { color: $main-color-light; }
}
@@ -274,6 +273,9 @@
#crate-links {
@include display-flex;
+ padding-bottom: 20px;
+ border-bottom: 5px solid $gray-border;
+ margin-bottom: 30px;
h3 { margin-bottom: 5px; }
.section {
diff --git a/app/templates/crate/index.hbs b/app/templates/crate/index.hbs
index 890bc814046..e716c734eff 100644
--- a/app/templates/crate/index.hbs
+++ b/app/templates/crate/index.hbs
@@ -106,6 +106,77 @@
+
+
+
+
+
Dependencies
+
+ {{#each currentDependencies}}
+ -
+ {{#link-to 'crate' crate_id}}
+ {{ crate_id}} {{ req }}
+ {{/link-to}}
+
+ {{/each}}
+
+
+
+
+
Dev-Dependencies
+
+ {{#each currentDevDependencies}}
+ -
+ {{#link-to 'crate' crate_id}}
+ {{ crate_id}} {{ req }}
+ {{/link-to}}
+
+ {{/each}}
+
+
+
+
+
Versions
+
+ {{#each smallSortedVersions}}
+ -
+ {{#link-to 'crate' this}}{{ num }}{{/link-to}}
+ {{ date-small created_at }}
+ {{#if yanked}}
+ yanked
+ {{/if}}
+
+ {{/each}}
+
+
+ {{#if hasMoreVersions}}
+ {{#link-to 'crate.versions' this}}
+ show all {{ versions.length }} versions
+ {{/link-to}}
+ {{/if}}
+
+
+
+
Stats Overview
@@ -160,74 +231,3 @@
{{/if}}
-
-
-
-
-
-
Dependencies
-
- {{#each currentDependencies}}
- -
- {{#link-to 'crate' crate_id}}
- {{ crate_id}} {{ req }}
- {{/link-to}}
-
- {{/each}}
-
-
-
-
-
Dev-Dependencies
-
- {{#each currentDevDependencies}}
- -
- {{#link-to 'crate' crate_id}}
- {{ crate_id}} {{ req }}
- {{/link-to}}
-
- {{/each}}
-
-
-
-
-
Versions
-
- {{#each smallSortedVersions}}
- -
- {{#link-to 'crate' this}}{{ num }}{{/link-to}}
- {{ date-small created_at }}
- {{#if yanked}}
- yanked
- {{/if}}
-
- {{/each}}
-
-
- {{#if hasMoreVersions}}
- {{#link-to 'crate.versions' this}}
- show all {{ versions.length }} versions
- {{/link-to}}
- {{/if}}
-
-
-