added TailwindCSS and got it working as it was before
This commit is contained in:
47
index.html
47
index.html
@ -1,13 +1,38 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<link rel="icon" href="/favicon.ico" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Vite App</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
<script type="module" src="/src/main.js"></script>
|
||||
</body>
|
||||
<html lang="en-US">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<meta name="robots" content="index,follow">
|
||||
<meta name="googlebot" content="index,follow">
|
||||
|
||||
<meta name="format-detection" content="telephone=no">
|
||||
<meta http-equiv="x-dns-prefetch-control" content="off">
|
||||
|
||||
<meta name="google" content="notranslate">
|
||||
<meta name="google" content="nositelinkssearchbox">
|
||||
|
||||
<meta name="rating" content="General">
|
||||
|
||||
|
||||
<meta name="subject" content="CSS color conversion tool">
|
||||
<meta name="description" content="Convert colors in a batch among HSL(a), RGB(a), and Hex">
|
||||
|
||||
<title>Batch Color Converter</title>
|
||||
|
||||
<!-- Privacy -->
|
||||
<meta name="twitter:dnt" content="on">
|
||||
|
||||
<!-- analytics -->
|
||||
<!-- none -->
|
||||
|
||||
<script type="module" src="/src/main.js"></script>
|
||||
</head>
|
||||
<body class="font-open-sans antialiased bg-zinc-50 dark:bg-slate-900">
|
||||
<div id="app" class="min-h-screen">
|
||||
<!-- -->
|
||||
</div>
|
||||
<!-- END OF LINE. -->
|
||||
</body>
|
||||
</html>
|
||||
|
Reference in New Issue
Block a user