From d1343c57d325ee0e18cbe5d04c799bb3a8fb080d Mon Sep 17 00:00:00 2001 From: I-Have-An-Issue <34550332+I-Have-An-Issue@users.noreply.github.com> Date: Wed, 5 Oct 2022 15:15:18 -0400 Subject: [PATCH] Erm --- .prettierrc | 2 +- README.md | 41 +++------------------------------------ src/app.css | 1 - src/routes/+layout.svelte | 2 +- src/routes/+page.svelte | 2 -- tailwind.config.cjs | 3 +++ 6 files changed, 8 insertions(+), 43 deletions(-) diff --git a/.prettierrc b/.prettierrc index a77fdde..2d38c79 100644 --- a/.prettierrc +++ b/.prettierrc @@ -1,6 +1,6 @@ { "useTabs": true, - "singleQuote": true, + "singleQuote": false, "trailingComma": "none", "printWidth": 100, "plugins": ["prettier-plugin-svelte"], diff --git a/README.md b/README.md index 5c91169..f3b10d7 100644 --- a/README.md +++ b/README.md @@ -1,38 +1,3 @@ -# 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. +# rowblox-sitetest +This is the development repository of `rowblox` +Please prototype ideas here before committing your ideas to the production repository \ No newline at end of file diff --git a/src/app.css b/src/app.css index 1c3c425..67885d0 100644 --- a/src/app.css +++ b/src/app.css @@ -8,5 +8,4 @@ body { @apply text-white; padding: 0; margin: 0; - background-image: url(/background.png); } diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte index 2e511e0..9e20eb0 100644 --- a/src/routes/+layout.svelte +++ b/src/routes/+layout.svelte @@ -1,5 +1,5 @@ diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte index 77520e8..e69de29 100644 --- a/src/routes/+page.svelte +++ b/src/routes/+page.svelte @@ -1,2 +0,0 @@ -

Rowblox is currently under development.

- diff --git a/tailwind.config.cjs b/tailwind.config.cjs index a09ab5b..1d0ed50 100644 --- a/tailwind.config.cjs +++ b/tailwind.config.cjs @@ -2,6 +2,9 @@ module.exports = { content: ['./src/**/*.{html,js,svelte,ts}'], theme: { + container: { + center: true, + }, extend: {} }, plugins: []