Skip to content

Commit

Permalink
Fix too long chart/deployment name helm#16
Browse files Browse the repository at this point in the history
  • Loading branch information
remstos committed Jul 3, 2017
1 parent ef5aa82 commit b6366f5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
7 changes: 4 additions & 3 deletions src/ui/src/app/chart-item/chart-item.component.scss
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ $chart-item-content-height: 150px;

&-logo {
height: 100%;
width: 100px;
width: 80px;
background-color: white;
display: flex;
align-items: center;
Expand All @@ -41,7 +41,7 @@ $chart-item-content-height: 150px;
justify-content: center;
}
img {
width: 60%;
width: 70%;
max-height: 100%;
}
}
Expand All @@ -53,7 +53,8 @@ $chart-item-content-height: 150px;
display: flex;
flex-direction: column;
justify-content: flex-end;

word-wrap: break-word;
overflow: hidden;
&__title {
a { color: white; }
margin: 0;
Expand Down
7 changes: 4 additions & 3 deletions src/ui/src/app/deployment-item/deployment-item.component.scss
Original file line number Diff line number Diff line change
Expand Up @@ -15,24 +15,25 @@
overflow: hidden;
&_icon {
height: 100%;
width: 100px;
width: 80px;
background: white;
display: flex;
align-items: center;
justify-content: center;
img {
width: 60%;
width: 70%;
max-height: 100%;
}
}
&_content {
height: 100%;
width: 100%;
position: relative;
padding: 10px;
display: flex;
flex-direction: column;
justify-content: center;
word-wrap: break-word;
overflow: hidden;
&__title {
margin: 0;
margin-bottom: 5px;
Expand Down

0 comments on commit b6366f5

Please sign in to comment.