Compare commits

..

No commits in common. "44029c812eebe3ee591dc2133c35082c5b3de41f" and "089813146f6d0086e01ab7755ecc99f9dd389a14" have entirely different histories.

5 changed files with 5 additions and 9 deletions

View File

@ -9,6 +9,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1" /> <meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="Lauf Für Kaya! - Admin" /> <meta name="description" content="Lauf Für Kaya! - Admin" />
<title>Lauf für Kaya! - Admin</title> <title>Lauf für Kaya! - Admin</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/tailwindcss@2.0.2/dist/tailwind.min.css">
</head> </head>
<body> <body>

View File

@ -22,8 +22,5 @@ module.exports = {
}, },
alias: { alias: {
/* ... */ /* ... */
},
experiments: {
optimize: { bundle: true, minify: true }
} }
}; };

View File

@ -1,5 +1,5 @@
<script> <script>
import "./TailwindStyles.svelte"; // import TailwindStyles from "./TailwindStyles.svelte";
import "toastify-js/src/toastify.css"; import "toastify-js/src/toastify.css";
import { Route, router } from "tinro"; import { Route, router } from "tinro";
router.subscribe((routeInfo) => { router.subscribe((routeInfo) => {

View File

@ -152,7 +152,6 @@
</a> </a>
<div> <div>
<div <div
tabindex="0"
class:bg-gray-100={activePage === 'blub'} class:bg-gray-100={activePage === 'blub'}
class="flex items-center justify-between px-4 py-3 transition cursor-pointer group hover:bg-gray-100 hover:text-gray-900" class="flex items-center justify-between px-4 py-3 transition cursor-pointer group hover:bg-gray-100 hover:text-gray-900"
role="button" role="button"
@ -260,7 +259,6 @@
<span>{$_('about')}</span> <span>{$_('about')}</span>
</a> </a>
<span <span
tabindex="0"
class="flex items-center px-4 py-3 transition cursor-pointer group hover:bg-gray-100 hover:text-gray-900" class="flex items-center px-4 py-3 transition cursor-pointer group hover:bg-gray-100 hover:text-gray-900"
on:click={() => { on:click={() => {
logout(); logout();

View File

@ -1,9 +1,9 @@
const sveltePreprocess = require('svelte-preprocess'); const sveltePreprocess = require('svelte-preprocess');
const preprocess = sveltePreprocess({ const preprocess = sveltePreprocess({
postcss: { // postcss: {
plugins: [ require('tailwindcss'), require('autoprefixer') ] // plugins: [ require('tailwindcss'), require('autoprefixer') ]
} // }
}); });
module.exports = { module.exports = {