1
0
Fork 0

Fix tag display on video watch

This commit is contained in:
Chocobozzz 2017-10-27 09:37:45 +02:00
parent d6e32a2e91
commit e02573ad67
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 16 additions and 10 deletions

View File

@ -33,8 +33,9 @@
.video-name-views {
font-weight: bold;
font-size: 18px;
height: $video-watch-title-height;
line-height: $video-watch-title-height;
min-height: $video-watch-title-height;
display: flex;
align-items: center;
.video-name {
padding-left: $video-watch-info-padding-left;
@ -175,20 +176,25 @@
font-weight: bold;
font-size: 12px;
.video-details-attribute-label {
color: $video-watch-info-color;
display: inline-block;
width: 60px;
margin-right: 5px;
.video-details-attribute {
display: flex;
.video-details-attribute-label {
color: $video-watch-info-color;
flex-basis: 60px;
flex-grow: 0;
flex-shrink: 0;
margin-right: 5px;
}
}
}
.video-details-tags {
display: inline-block;
display: flex;
flex-wrap: wrap;
a {
display: inline-block;
margin-right: 3px;
margin: 0 3px 3px 0;
font-size: 11px;
}
}