about summary refs log tree commit diff
path: root/client/src/lib/components/Title.svelte
blob: 4266eb1fc3ec0ab5b1ee843cbbe88b58713816e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<style>
    p {
        color: #212121;
        margin: 0 0 5px 0;
    }

    .text {
        margin: 10px 0 15px 0;
    }

    img {
        width: 25px;
    }
</style>

<div>
    <img src="/shorest.svg" alt=""/>
    <div class="text">
        <p><b>sho.rest</b></p>
        <p>Made with ❤ by <b>Mel</b></p>
    </div>
</div>