Fix tag display on video watch
This commit is contained in:
parent
d6e32a2e91
commit
e02573ad67
|
@ -33,8 +33,9 @@
|
||||||
.video-name-views {
|
.video-name-views {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
height: $video-watch-title-height;
|
min-height: $video-watch-title-height;
|
||||||
line-height: $video-watch-title-height;
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
.video-name {
|
.video-name {
|
||||||
padding-left: $video-watch-info-padding-left;
|
padding-left: $video-watch-info-padding-left;
|
||||||
|
@ -175,20 +176,25 @@
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
|
|
||||||
.video-details-attribute-label {
|
.video-details-attribute {
|
||||||
color: $video-watch-info-color;
|
display: flex;
|
||||||
display: inline-block;
|
|
||||||
width: 60px;
|
.video-details-attribute-label {
|
||||||
margin-right: 5px;
|
color: $video-watch-info-color;
|
||||||
|
flex-basis: 60px;
|
||||||
|
flex-grow: 0;
|
||||||
|
flex-shrink: 0;
|
||||||
|
margin-right: 5px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.video-details-tags {
|
.video-details-tags {
|
||||||
display: inline-block;
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
|
||||||
a {
|
a {
|
||||||
display: inline-block;
|
margin: 0 3px 3px 0;
|
||||||
margin-right: 3px;
|
|
||||||
font-size: 11px;
|
font-size: 11px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue