Fix tag in project page
parent
5c767e7464
commit
134111713c
|
@ -8,7 +8,7 @@ div.wrapper
|
|||
include ../../../svg/lock.svg
|
||||
p.description {{vm.project.get('description')}}
|
||||
|
||||
div.project-list-single-tags.tags-container(ng-if="::vm.project.get('tags').size")
|
||||
div.single-project-tags.tags-container(ng-if="::vm.project.get('tags').size")
|
||||
span.tag(style='border-left: 5px solid {{::tag.get("color")}};', tg-repeat="tag in ::vm.project.get('colorized_tags')")
|
||||
span.tag-name {{::tag.get('name')}}
|
||||
|
||||
|
|
|
@ -1,9 +1,12 @@
|
|||
.tag {
|
||||
@extend %light;
|
||||
@extend %small;
|
||||
background: $whitish; // Fallback
|
||||
border-radius: 0 5px 5px 0;
|
||||
color: $grayer;
|
||||
display: inline-block;
|
||||
margin-right: .5rem;
|
||||
padding: .2rem .5rem;
|
||||
padding: .5rem .75rem;
|
||||
text-align: center;
|
||||
.icon-delete {
|
||||
color: $gray-light;
|
||||
|
|
|
@ -22,6 +22,9 @@
|
|||
margin-bottom: .5rem;
|
||||
padding: .5rem 1rem;
|
||||
}
|
||||
.single-project-tags {
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
.timeline {
|
||||
flex: 1;
|
||||
margin-right: 1rem;
|
||||
|
|
Loading…
Reference in New Issue