This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// InstaStories.swift | |
// SwiftUITests | |
// | |
// Created by Fabio Giolito on 23/06/2019. | |
// Copyright © 2019 Fabio Giolito. All rights reserved. | |
// | |
import Combine | |
import SwiftUI |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.CardGrid { | |
width: 1280px !important; | |
height: auto !important; | |
margin: 0 auto; | |
display: grid !important; | |
grid-gap: 40px; | |
grid-template-columns: repeat(4, 290px); | |
grid-template-rows: auto; | |
align-items: stretch !important; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
did:3:kjzl6cwe1jw146xqv0dh4zllis0314a7st0mbx1dd910m3dlgkisxie5vtfpknd |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
import { fly } from "svelte/transition"; | |
import { teleport } from "$lib/teleport"; | |
export let isOpen = false; | |
// Usage | |
// <Dropdown up right> | |
// <button slot="trigger">Toggle</button> | |
// <div slot="menu">Content</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
import { onMount } from "svelte"; | |
// Text to display | |
export let text = ""; | |
// <Typerwiter paused … /> to start paused | |
export let paused = false; | |
// <Typerwiter cursor … /> to show blinking cursor |
OlderNewer