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>
|
||||
<!-- {{ card.html }} -->
|
||||
<!-- <div [innerHTML]="html">
|
||||
|
||||
</div> -->
|
||||
</div>
|
||||
<div *ngIf="card.type === 'rich'" class="card__rich" [innerHTML]="html"></div>
|
||||
</div>
|
|
@ -1,13 +1,15 @@
|
|||
@import "variables";
|
||||
// @import "mixins";
|
||||
|
||||
.card {
|
||||
border: 1px solid $card-border-color;
|
||||
background-color: $column-background;
|
||||
.card {
|
||||
border-radius: 3px;
|
||||
border: 0px;
|
||||
|
||||
transition: all .2s;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
|
||||
background-color: $column-background;
|
||||
// background-color: red;
|
||||
|
||||
&:hover {
|
||||
background-color: lighten($column-background, 5);
|
||||
|
@ -18,6 +20,8 @@
|
|||
text-decoration: none;
|
||||
color: whitesmoke;
|
||||
|
||||
border: 1px solid $card-border-color;
|
||||
|
||||
&--image {
|
||||
width: 55px;
|
||||
height: 55px;
|
||||
|
|
Loading…
Reference in New Issue