Revert "literally just sliding it to the center"
This reverts commit 3d39032455.
This commit is contained in:
parent
547e8e0a08
commit
c8fd38270e
39
README.md
39
README.md
|
|
@ -1 +1,38 @@
|
|||
Row blox
|
||||
# create-svelte
|
||||
|
||||
Everything you need to build a Svelte project, powered by [`create-svelte`](https://github.com/sveltejs/kit/tree/master/packages/create-svelte).
|
||||
|
||||
## Creating a project
|
||||
|
||||
If you're seeing this, you've probably already done this step. Congrats!
|
||||
|
||||
```bash
|
||||
# create a new project in the current directory
|
||||
npm create svelte@latest
|
||||
|
||||
# create a new project in my-app
|
||||
npm create svelte@latest my-app
|
||||
```
|
||||
|
||||
## Developing
|
||||
|
||||
Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:
|
||||
|
||||
```bash
|
||||
npm run dev
|
||||
|
||||
# or start the server and open the app in a new browser tab
|
||||
npm run dev -- --open
|
||||
```
|
||||
|
||||
## Building
|
||||
|
||||
To create a production version of your app:
|
||||
|
||||
```bash
|
||||
npm run build
|
||||
```
|
||||
|
||||
You can preview the production build with `npm run preview`.
|
||||
|
||||
> To deploy your app, you may need to install an [adapter](https://kit.svelte.dev/docs/adapters) for your target environment.
|
||||
|
|
|
|||
11
src/app.css
11
src/app.css
|
|
@ -1,12 +1,3 @@
|
|||
@tailwind base;
|
||||
@tailwind components;
|
||||
@tailwind utilities;
|
||||
|
||||
html,
|
||||
body {
|
||||
@apply bg-zinc-800;
|
||||
@apply text-white;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
background-image: url(/background.png);
|
||||
}
|
||||
@tailwind utilities;
|
||||
|
|
@ -7,6 +7,6 @@
|
|||
%sveltekit.head%
|
||||
</head>
|
||||
<body>
|
||||
%sveltekit.body%
|
||||
<div>%sveltekit.body%</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -1,12 +1 @@
|
|||
<svelte:head>
|
||||
<title>Rowblox</title>
|
||||
</svelte:head>
|
||||
|
||||
<div class="container">
|
||||
<div class="w-full flex flex-col mb-2">
|
||||
<div class="mx-auto mt-64">
|
||||
<img class="max-w-md" src="/banner.png" alt="" />
|
||||
<p class="text-center text-xl">Rowblox is currently in development, check back later!</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<h1 class="text-3xl font-bold underline">Rowblox is currently under development.</h1>
|
||||
|
|
|
|||
BIN
static/404.png
BIN
static/404.png
Binary file not shown.
|
Before Width: | Height: | Size: 15 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 1.9 MiB |
Binary file not shown.
|
Before Width: | Height: | Size: 54 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 1.5 KiB |
|
|
@ -2,9 +2,6 @@
|
|||
module.exports = {
|
||||
content: ['./src/**/*.{html,js,svelte,ts}'],
|
||||
theme: {
|
||||
container: {
|
||||
center: true,
|
||||
},
|
||||
extend: {}
|
||||
},
|
||||
plugins: []
|
||||
|
|
|
|||
Loading…
Reference in New Issue