mirror of
https://github.com/MichaByte/OnBoard-Live.git
synced 2025-12-06 08:13:41 -05:00
frontend fixes as proposed by @Hex-4
This commit is contained in:
parent
6cc3829c63
commit
801aa9ce3f
3 changed files with 12 additions and 2 deletions
|
|
@ -133,11 +133,11 @@
|
||||||
{:else}
|
{:else}
|
||||||
<div class="text-center text-4xl absolute w-screen h-screen top-1/2">
|
<div class="text-center text-4xl absolute w-screen h-screen top-1/2">
|
||||||
<p>
|
<p>
|
||||||
No one is here yet!<br /> Check back later
|
No one is here yet!<br /> Check back later.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
{/if}
|
{/if}
|
||||||
<h2 class="absolute bottom-4 text-center w-screen text-xl">
|
<h2 class="absolute bottom-4 text-center w-screen text-3xl">
|
||||||
Join at <div
|
Join at <div
|
||||||
style="display: inline-block; color: #338eda; text-decoration-line: underline;"
|
style="display: inline-block; color: #338eda; text-decoration-line: underline;"
|
||||||
>
|
>
|
||||||
|
|
@ -147,6 +147,9 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
|
:root{
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
.gradient {
|
.gradient {
|
||||||
width: 100vw;
|
width: 100vw;
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,5 @@
|
||||||
|
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
|
||||||
|
|
||||||
@tailwind base;
|
@tailwind base;
|
||||||
@tailwind components;
|
@tailwind components;
|
||||||
@tailwind utilities;
|
@tailwind utilities;
|
||||||
|
|
@ -3,6 +3,11 @@ export default {
|
||||||
content: ['./src/**/*.{html,js,svelte,ts}'],
|
content: ['./src/**/*.{html,js,svelte,ts}'],
|
||||||
theme: {
|
theme: {
|
||||||
extend: {},
|
extend: {},
|
||||||
|
fontFamily: {
|
||||||
|
'display': ['Inter'],
|
||||||
|
'sans': ['Inter'],
|
||||||
|
'body': ['Inter']
|
||||||
|
}
|
||||||
},
|
},
|
||||||
plugins: [],
|
plugins: [],
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue