Skip to content

Commit

Permalink
mobile viewport
Browse files Browse the repository at this point in the history
  • Loading branch information
steskelt committed Mar 19, 2024
1 parent b9e9100 commit fae2c86
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ include:
- _pages

halfmoonCssTag: <link href="https://cdn.jsdelivr.net/npm/[email protected]/css/halfmoon.min.css" rel="stylesheet" integrity="sha256-SsJizWSIG9JT9Qxbiy8xnYJfjCAkhEQ0hihxRn7jt2M=" crossorigin="anonymous">
litCoreJs: https://cdn.jsdelivr.net/gh/lit/dist@2/core/lit-core.min.js

footer:
links:
Expand Down
4 changes: 2 additions & 2 deletions _pages/influencer.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@

<script src="https://d3js.org/d3.v7.js"></script>
<script type="module">
import {LitElement, html, svg, css} from 'https://cdn.jsdelivr.net/gh/lit/dist@2/core/lit-core.min.js';
import {LitElement, html, svg, css} from '{{ site.litCoreJs }}';

const halfmoonCssTag = '{{ site.halfmoonCssTag }}';
const halfmoonCssTag = html`{{ site.halfmoonCssTag }}`;

export class D3UserChart extends LitElement {
static properties = {
Expand Down
2 changes: 1 addition & 1 deletion _pages/integrations/x.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ The <span class="fst-italic">FinTwit</span> community on X is notorious for a la
<hr style="margin-top: 0;" class="mb-5">

<script type="module">
import {LitElement, html, svg, css} from 'https://cdn.jsdelivr.net/gh/lit/dist@2/core/lit-core.min.js';
import {LitElement, html, svg, css} from '{{ site.litCoreJs }}';

export class TwitterTweet extends LitElement {
//Populate using https://cdn.syndication.twimg.com/tweet-result?id=[id_str]&lang=en
Expand Down
4 changes: 2 additions & 2 deletions _pages/rankings.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ <h1 class="display-6 fw-bold text-center">Influencer Rankings</h1>
</span>

<script type="module">
import {LitElement, html, svg, css} from 'https://cdn.jsdelivr.net/gh/lit/dist@2/core/lit-core.min.js';
import {LitElement, html, svg, css} from '{{ site.litCoreJs }}';

const halfmoonCssTag = '{{ site.halfmoonCssTag }}';
const halfmoonCssTag = html`{{ site.halfmoonCssTag }}`;

export function humanNumber(num){
function intlFormat(num){
Expand Down

0 comments on commit fae2c86

Please sign in to comment.