Skip to content

Commit

Permalink
Update tailwind.css
Browse files Browse the repository at this point in the history
  • Loading branch information
RR-Gary-Stringham authored Apr 7, 2024
1 parent dd3e9a1 commit 4869cc5
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions public/tailwind.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,33 +4,33 @@

@layer base {
body {
@apply bg-white text-blue dark: bg-blue dark: text-white;
@apply bg-white text-blue dark:bg-blue dark:text-white;
}

a {
@apply text-blue dark: text-white;
@apply text-blue dark:text-white;
}
}

@layer components {
.card {
@apply p-4 bg-white border border-blue dark: @tailwind base;
@apply p-4 bg-white border border-blue dark:@tailwind base;
@tailwind components;
@tailwind utilities;

@layer base {
body {
@apply bg-white text-blue dark:bg-blue dark: text-white;
@apply bg-white text-blue dark:bg-blue dark:text-white;
}

a {
@apply text-blue dark: text-white;
@apply text-blue dark:text-white;
}
}

@layer components {
.card {
@apply p-4 bg-white border border-blue dark: bg-grayDark dark: border-grayDark shadow rounded-lg p-4 mb-2;
@apply p-4 bg-white border border-blue dark:bg-grayDark dark:border-grayDark shadow rounded-lg p-4 mb-2;
}

.pill {
Expand All @@ -49,23 +49,23 @@
border-radius: 3.75px;
}
.bar {
@apply bg-white dark: bg-blue;
@apply bg-white dark:bg-blue;
padding-bottom: 1px;
height: 100%;
width: 85%;
border-radius: 100px;
}

.bar.green {
@apply bg-green dark: bg-green;
@apply bg-green dark:bg-green;
}

.bar.red {
@apply bg-red dark: bg-red;
@apply bg-red dark:bg-red;
}

.bar.yellow {
@apply bg-yellow dark: bg-yellow;
@apply bg-yellow dark:bg-yellow;
}

.tooltip {
Expand All @@ -74,7 +74,7 @@

.tooltip .content {
@apply invisible absolute z-50 inline-block;
@apply rounded-lg py-1 px-2 bg-white dark: bg-blue shadow;
@apply rounded-lg py-1 px-2 bg-white dark:bg-blue shadow;
@apply opacity-0 transition-all duration-200 scale-50;
}

Expand Down Expand Up @@ -126,7 +126,7 @@

.tooltip .content {
@apply invisible absolute z-50 inline-block;
@apply rounded-lg py-1 px-2 --gray dark: bg-blue shadow;
@apply rounded-lg py-1 px-2 --gray dark:bg-blue shadow;
@apply opacity-0 transition-all duration-200 scale-50;
}

Expand Down

0 comments on commit 4869cc5

Please sign in to comment.