Add support for Twitter and Telegram

This commit is contained in:
Lachlan Kermode
2022-03-06 19:34:12 -05:00
parent b9eac1ce9a
commit 4113c04830
8 changed files with 142 additions and 13 deletions

View File

@@ -63,7 +63,7 @@ $timeline: 3;
$infopopup-width: 400px;
$infopopup-left: 122px;
$infopopup-bottom: 180px;
$card-width: 386px;
$card-width: 600px;
$card-right: 9px;
$narrative-info-height: 205px;
$narrative-info-desc-height: 153px;

View File

@@ -15,7 +15,7 @@
text-align: left;
overflow-y: scroll;
height: 100%;
max-width: 400px;
max-width: $card-width;
&:hover {
background: $lightwhite;
@@ -53,6 +53,7 @@
.card-col {
display: flex;
flex-direction: row;
justify-content: space-between;
.card-cell {
flex: 1;
@@ -182,7 +183,7 @@
.media {
display: flex;
max-height: 350px;
// max-height: 350px;
// justify-content: center;
flex-direction: column;
cursor: pointer;
@@ -268,4 +269,8 @@
.card-row {
border-color: darkgray;
}
.embedded {
width: calc(#{$card-width} - 2px) !important;
}
}