Skip to content

Commit 4401b91

Browse files
committed
Be more explicit about what the number of dependencies means.
1 parent 1e64b24 commit 4401b91

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

FrontEnd/styles/package.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,8 @@
9898
li.dependencies {
9999
grid-column-start: span 2;
100100
background-image: var(--image-dependencies);
101+
display: flex;
102+
flex-direction: column;
101103
}
102104

103105
li.license {

Sources/App/Views/PackageController/GetRoute.Model+ext.swift

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,12 @@ extension API.PackageController.GetRoute.Model {
319319

320320
return .li(
321321
.class("dependencies"),
322-
.text(dependenciesPhrase)
322+
.div(
323+
.text(dependenciesPhrase)
324+
),
325+
.small(
326+
.text("Including all transitive and test dependencies.")
327+
)
323328
)
324329
}
325330

0 commit comments

Comments
 (0)