Skip to content
This repository has been archived by the owner on Mar 15, 2020. It is now read-only.

Fix .package-link class for long package name #86

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
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
9 changes: 9 additions & 0 deletions app/styles/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ input[type="search"]::-webkit-search-cancel-button {

.cell-name {
padding: 8px 8px 15px 8px !important;
max-width: 606px;
}

.cell-gravatar {
Expand Down Expand Up @@ -159,6 +160,14 @@ a.sort-button {

.package-link {
font-size: 24px;
max-width: 90%;
height: 42px;
overflow: hidden;
display: inline-block;
word-break: break-all;
vertical-align: middle;
white-space: nowrap;
text-overflow: ellipsis;
}

.new-package {
Expand Down