frontend fixes as proposed by @Hex-4

This commit is contained in:
Micha Albert 2024-08-01 21:38:24 +00:00
parent 6cc3829c63
commit 801aa9ce3f
3 changed files with 12 additions and 2 deletions

View file

@ -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;

View file

@ -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;

View file

@ -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: [],
} }