Skip to content

Commit

Permalink
[NO-ISSUE] Fix the revision svg icon's size
Browse files Browse the repository at this point in the history
  • Loading branch information
tchoutri committed Nov 1, 2023
1 parent 6cad303 commit 0debc9e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions assets/css/3-screens/1-package/1-package.css
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,17 @@ span.revised-date:hover::before {
display: block;
}

.revised-date {
svg {
display: inline;
width: 1rem;
height: 1rem;
}

position: relative; /* making the .tooltip span a container for the tooltip text */
border-bottom: 1px dashed #000; /* little indicater to indicate it's hoverable */
}

.instruction-tooltip {
svg {
display: inline;
Expand Down
2 changes: 1 addition & 1 deletion test/Flora/PackageSpec.hs
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ testBytestringDependents :: TestEff ()
testBytestringDependents = do
results <- Query.getAllPackageDependentsWithLatestVersion (Namespace "haskell") (PackageName "bytestring") (0, 30) Nothing
assertEqual
24
23
(Vector.length results)

testNoSelfDependent :: TestEff ()
Expand Down

0 comments on commit 0debc9e

Please sign in to comment.