Skip to content

Commit

Permalink
Fixed the tailwind bug
Browse files Browse the repository at this point in the history
  • Loading branch information
fabcodingzest committed Aug 19, 2020
1 parent a1177f2 commit 551895f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion public/css/style.css

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions views/layouts/app.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
integrity="sha256-46r060N2LrChLLb5zowXQ72/iKKNiw/lAmygmHExk/o="
crossorigin="anonymous"
/>
<link href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/Chart.min.js"></script>
<link rel="stylesheet" href="css/style.css" />
<title>TradeByte</title>
Expand Down
6 changes: 1 addition & 5 deletions views/partials/_nav.ejs
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
<script src="https://cdn.jsdelivr.net/gh/alpinejs/[email protected]/dist/alpine.min.js" defer></script>
<div @click.away="open = false"
class="flex flex-col w-full md:w-56 lg:w-64 text-gray-700 bg-white flex-shrink-0 md:min-h-full md:fixed md:left-0 md:top-0 overflow-y-auto"
class="flex flex-col w-full md:w-56 lg:w-64 text-gray-700 bg-white flex-shrink-0 md:h-screen md:z-50 md:fixed md:left-0 md:top-0"
x-data="{ open: false }">
<div class="container rerelative flex flex-col">
<div class="container ">
<div class="flex-shrink-0 px-6 py-4 flex flex-row items-center justify-between">
<h1 class="font-bold uppercase border-b border-gray-100 w-full text-center">
<a href="/" class="hover:text-gray-900 tracking-widest text-2xl md:text-2xl lg:text-3xl pb-2 pt-32">Tradebyte</a>
Expand Down Expand Up @@ -57,5 +55,3 @@
</div>
</nav>
</div>
</div>
</div>

0 comments on commit 551895f

Please sign in to comment.