Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@amacgregor
Created March 7, 2021 00:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amacgregor/66c7fd76b55332c77bbdb21c5f62940b to your computer and use it in GitHub Desktop.
Save amacgregor/66c7fd76b55332c77bbdb21c5f62940b to your computer and use it in GitHub Desktop.
Css for phoenix_fund
/* This file is for your main application css. */
@import "../node_modules/nprogress/nprogress.css";
@import "tailwindcss/base";
@import "tailwindcss/components";
@import "./custom.css";
@import "./phoenix.css";
@import "tailwindcss/utilities";
/* Auction */
#auction {
@apply max-w-xl mx-auto text-center;
button {
@apply bg-blue-600 mx-1 py-0 px-4 border border-cool-gray-400 border-2 rounded-lg shadow-sm transition ease-in-out duration-150 outline-none text-5xl;
}
button:hover {
@apply bg-green-300;
}
img {
@apply w-10;
}
.meter {
@apply flex h-24 overflow-hidden text-2xl bg-cool-gray-300 rounded-lg mb-8;
}
.meter > span {
@apply flex flex-col justify-center text-cool-gray-900 text-5xl text-center whitespace-nowrap bg-green-300 font-bold;
transition: width 2s ease;
}
}
@sbpipb
Copy link

sbpipb commented May 19, 2023

typo on line 5

Missing closing bracket.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment