We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a6bf52 commit fcef0e5Copy full SHA for fcef0e5
app/components/rev-dep-row.hbs
@@ -1,5 +1,5 @@
1
<div local-class="row {{if this.focused "focused"}}" ...attributes>
2
- <div>
+ <div local-class="left">
3
<LinkTo
4
@route="crate"
5
@model={{@dependency.version.crateName}}
app/components/rev-dep-row.module.css
@@ -6,6 +6,7 @@
6
display: flex;
7
align-items: center;
8
justify-content: space-between;
9
+ flex-wrap: wrap;
10
position: relative;
11
font-size: 18px;
12
padding: 15px 25px;
@@ -28,6 +29,11 @@
28
29
}
30
31
32
+.left {
33
+ overflow: hidden;
34
+ text-overflow: ellipsis;
35
+}
36
+
37
.link {
38
color: var(--crate-color);
39
font-weight: 500;
0 commit comments