Updated project structure

This commit is contained in:
Nicolai Ort 2021-08-17 20:15:53 +02:00
parent bbdabcb362
commit b1758b9a00
Signed by: niggl
GPG Key ID: 13AFA55AF62F269F
9 changed files with 9 additions and 6 deletions

View File

@ -1,5 +1,5 @@
<p align="center"> <p align="center">
<img height="150" src="./icon_128.png"> <img height="150" src="./src/icon_128.png">
<h1 align="center">LinkyLinky 4 Chrome</h1> <h1 align="center">LinkyLinky 4 Chrome</h1>
<h3 align="center">A simple, privacy focused urls shortner</h3> <h3 align="center">A simple, privacy focused urls shortner</h3>
</p> </p>

1
dist/tailwind.css/tailwind.css vendored Normal file

File diff suppressed because one or more lines are too long

View File

Before

Width:  |  Height:  |  Size: 8.3 KiB

After

Width:  |  Height:  |  Size: 8.3 KiB

View File

@ -6,7 +6,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LinkyLinky</title> <title>LinkyLinky</title>
<link rel="stylesheet" href="./tailwind.css"> <link rel="stylesheet" href="./tmp.css">
<style> <style>
body { body {
min-width: 400px; min-width: 400px;
@ -54,7 +54,7 @@
<div id="target_container"> <div id="target_container">
<div class="mt-1 flex rounded-md shadow-sm"> <div class="mt-1 flex rounded-md shadow-sm">
<input type="url" name="target" id="target" required <input type="url" name="target" id="target" required
class="flex-1 min-w-0 block rounded-lg w-full px-3 py-2 focus:ring-indigo-500 focus:border-indigo-500 sm:text-sm border-gray-300" class="flex-1 min-w-0 block border rounded-lg w-full px-3 py-2 focus:ring-indigo-500 focus:border-indigo-500 sm:text-sm border-gray-300 bg-gray-50"
placeholder="target url" /> placeholder="target url" />
</div> </div>
</div> </div>
@ -65,7 +65,7 @@
https://kauf.es/ https://kauf.es/
</span> </span>
<input type="text" name="shortcode" id="shortcode" <input type="text" name="shortcode" id="shortcode"
class="flex-1 min-w-0 block w-full px-3 py-2 rounded-none rounded-r-md focus:ring-indigo-500 focus:border-indigo-500 sm:text-sm border-gray-300" class="flex-1 min-w-0 block w-full px-3 py-2 border-t border-b border-r rounded-none rounded-r-md focus:ring-indigo-500 focus:border-indigo-500 sm:text-sm border-gray-300"
placeholder="custom url" /> placeholder="custom url" />
</div> </div>
</div> </div>

View File

@ -1,5 +1,7 @@
module.exports = { module.exports = {
purge: [], purge: [
'./index.html'
],
darkMode: false, // or 'media' or 'class' darkMode: false, // or 'media' or 'class'
theme: { theme: {
extend: {}, extend: {},

File diff suppressed because one or more lines are too long