Skip to content

Commit

Permalink
fix(#1323): align text and icon in dataset name (#1324)
Browse files Browse the repository at this point in the history
Closes #1323
  • Loading branch information
leiyre committed Mar 28, 2022
1 parent e531675 commit 158fcad
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions frontend/components/core/table/ReTableInfo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -511,7 +511,12 @@ export default {
}
&:first-child {
flex-shrink: 0;
min-width: 220px;
min-width: 240px;
a {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
}
}
.svg-icon {
Expand Down Expand Up @@ -553,8 +558,10 @@ export default {
display: block;
@include font-size(15px);
word-break: break-word;
display: flex;
align-items: center;
span {
display: flex;
align-items: center;
}
.button-icon {
margin-left: 5px;
padding: 0;
Expand All @@ -564,12 +571,14 @@ export default {
}
}
a {
width: 100%;
text-decoration: none;
&:hover {
color: $primary-color;
}
}
.svg-icon {
max-width: 13px;
}
}
&__group {
padding-bottom: 2em;
Expand Down

0 comments on commit 158fcad

Please sign in to comment.