Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update main.css
updated `font-weight` to `700` for bold
  • Loading branch information
arghyaxcodes committed Feb 6, 2022
commit c275383757c941b362fe04097b366501e90ae4dd
13 changes: 9 additions & 4 deletions src/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -27,23 +27,28 @@ p {
@apply text-gray-500 dark:text-gray-300;
}

p a,.prose a {
@apply text-blue-500 dark:text-blue-300 no-underline hover:underline;
p a,
.prose a {
@apply text-blue-500 no-underline hover:underline dark:text-blue-300;
}

.prose p code,
li code {
@apply text-gray-700 dark:text-white bg-gray-200 dark:bg-gray-600;
@apply bg-gray-200 text-gray-700 dark:bg-gray-600 dark:text-white;
}

hr {
@apply border-gray-300 dark:border-gray-700;
}

thead tr th {
@apply text-gray-700 dark:text-white bg-gray-200 dark:bg-gray-600;
@apply bg-gray-200 text-gray-700 dark:bg-gray-600 dark:text-white;
}

.prose {
@apply text-gray-500 dark:text-gray-300;
}

.prose strong {
font-weight: 700;
}