Fix tags on project listing
parent
134111713c
commit
2687338db8
|
@ -13,7 +13,6 @@ div.project-list-wrapper.centered
|
|||
ul(tg-sort-projects="vm.projects")
|
||||
li.project-list-single(tg-bind-scope, tg-repeat="project in vm.projects")
|
||||
div.project-list-single-left
|
||||
div.project-list-single-title
|
||||
h1.project-name
|
||||
a(href="#", tg-nav="project:project=project.get('slug')", title="{{ ::project.get('name') }}") {{project.get('name')}}
|
||||
span.private(ng-if="project.get('is_private')", title="{{'PROJECT.PRIVATE' | translate}}")
|
||||
|
@ -25,7 +24,6 @@ div.project-list-wrapper.centered
|
|||
span.tag(style='border-left: 5px solid {{::tag.get("color")}};', tg-repeat="tag in ::project.get('colorized_tags')")
|
||||
span.tag-name {{::tag.get('name')}}
|
||||
|
||||
div.project-list-single-right
|
||||
span.drag.icon.icon-drag-v
|
||||
|
||||
aside.help-area
|
||||
|
|
|
@ -6,13 +6,7 @@
|
|||
position: relative;
|
||||
}
|
||||
|
||||
.project-list-single-left,
|
||||
.project-list-single-right {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.project-list-single-left {
|
||||
align-content: space-between;
|
||||
padding-right: 1rem;
|
||||
h1 {
|
||||
@extend %text;
|
||||
|
@ -31,7 +25,7 @@
|
|||
margin-bottom: 0;
|
||||
}
|
||||
.project-list-single-tags {
|
||||
align-content: flex-end;
|
||||
align-self: flex-end;
|
||||
display: flex;
|
||||
flex: 3;
|
||||
flex-wrap: wrap;
|
||||
|
|
Loading…
Reference in New Issue