removed remote video border
This commit is contained in:
parent
e0b85dd885
commit
4ba42a0d0c
|
@ -29,10 +29,6 @@
|
||||||
<div #video *ngIf="showHtml" class="card__video--content" [innerHTML]="html">
|
<div #video *ngIf="showHtml" class="card__video--content" [innerHTML]="html">
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<!-- {{ card.html }} -->
|
|
||||||
<!-- <div [innerHTML]="html">
|
|
||||||
|
|
||||||
</div> -->
|
|
||||||
</div>
|
</div>
|
||||||
<div *ngIf="card.type === 'rich'" class="card__rich" [innerHTML]="html"></div>
|
<div *ngIf="card.type === 'rich'" class="card__rich" [innerHTML]="html"></div>
|
||||||
</div>
|
</div>
|
|
@ -1,13 +1,15 @@
|
||||||
@import "variables";
|
@import "variables";
|
||||||
// @import "mixins";
|
|
||||||
|
|
||||||
.card {
|
.card {
|
||||||
border: 1px solid $card-border-color;
|
|
||||||
background-color: $column-background;
|
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
|
border: 0px;
|
||||||
|
|
||||||
transition: all .2s;
|
transition: all .2s;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|
||||||
|
background-color: $column-background;
|
||||||
|
// background-color: red;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
background-color: lighten($column-background, 5);
|
background-color: lighten($column-background, 5);
|
||||||
|
@ -18,6 +20,8 @@
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
color: whitesmoke;
|
color: whitesmoke;
|
||||||
|
|
||||||
|
border: 1px solid $card-border-color;
|
||||||
|
|
||||||
&--image {
|
&--image {
|
||||||
width: 55px;
|
width: 55px;
|
||||||
height: 55px;
|
height: 55px;
|
||||||
|
|
Loading…
Reference in New Issue