Skip to content

Commit

Permalink
Fix display of long tags
Browse files Browse the repository at this point in the history
Signed-off-by: trivernis <trivernis@protonmail.com>
  • Loading branch information
Trivernis committed Feb 12, 2022
1 parent f788d19 commit fbe516a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,19 +87,20 @@
font-size: 1.2em;
transition-duration: 0.1s;
width: 100%;
background-color: $background-lighter-05;

app-tag-item {
margin: auto auto auto 0.25em;
}
}

.selectable-tag:hover {
background-color: $background-lighter-05;
background-color: $background-lighter-10;
}

.selectable-tag:active {
cursor: pointer;
background-color: $background-lighter-10;
background-color: $background;
}

cdk-virtual-scroll-viewport {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
@import "src/colors";

:host {
height: 100%;
overflow: hidden;
display: flex;
}

.tag-item-wrapper {
display: inline;
width: 100%;
padding: 0.25em;
word-break: break-all;
text-overflow: ellipsis;
word-break: keep-all;
overflow: hidden;
margin: auto;
}

.tag-item-namespace {
Expand Down

0 comments on commit fbe516a

Please sign in to comment.