mirror of
https://github.com/garraflavatra/rolens.git
synced 2025-01-31 10:19:27 +00:00
Romein van Buren
a1456b3987
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
71 lines
1.6 KiB
Svelte
71 lines
1.6 KiB
Svelte
<script>
|
|
import Modal from '$components/modal.svelte';
|
|
import alink from '$lib/actions/alink';
|
|
import environment from '$lib/stores/environment';
|
|
</script>
|
|
|
|
<Modal width="400px" title=" " on:close>
|
|
<div class="brand">
|
|
<img src="/logo.png" alt="Rolens logo" />
|
|
<div>
|
|
<div class="title">
|
|
Rolens
|
|
<span class="version">{$environment.version}</span>
|
|
</div>
|
|
<div class="description">Intuitive MongoDB <br /> administration tool</div>
|
|
</div>
|
|
</div>
|
|
|
|
<hr />
|
|
|
|
<div class="info">
|
|
<p class="copy">© Romein van Buren, 2023.</p>
|
|
<p>
|
|
<a href="https://garraflavatra.github.io/rolens/" use:alink>Documentation</a> |
|
|
<a href="https://github.com/garraflavatra/rolens" use:alink>GitHub</a> |
|
|
<a href="https://github.com/garraflavatra/rolens/issues/new" use:alink>Report a bug</a> |
|
|
<a href="https://github.com/garraflavatra/rolens/blob/main/LICENSE" use:alink>License</a>
|
|
</p>
|
|
</div>
|
|
</Modal>
|
|
|
|
<style>
|
|
.brand {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-around;
|
|
}
|
|
.brand > img {
|
|
width: 125px;
|
|
flex: 0 1 125px;
|
|
}
|
|
.brand .title {
|
|
font-size: 2.25rem;
|
|
font-weight: 600;
|
|
line-height: 2.5rem;
|
|
}
|
|
.brand .title .version {
|
|
font-size: 80%;
|
|
font-weight: 300;
|
|
opacity: 0.65;
|
|
}
|
|
.brand .description {
|
|
font-size: 1.5rem;
|
|
line-height: 1.6rem;
|
|
}
|
|
|
|
hr {
|
|
margin: 2rem 1rem;
|
|
}
|
|
|
|
.info {
|
|
font-size: 1.25rem;
|
|
line-height: 1.25rem;
|
|
margin: 0 1rem 1rem;
|
|
text-align: center;
|
|
}
|
|
.info .copy {
|
|
font-weight: 500;
|
|
}
|
|
</style>
|