Browse Source

Polish up some styles

master
buttercat1791 1 year ago
parent
commit
da0a7dc3cd
  1. 34
      src/app.css

34
src/app.css

@ -233,6 +233,10 @@
.ul-leather li a { .ul-leather li a {
@apply text-gray-800 hover:text-primary-400 dark:text-gray-300 dark:hover:text-primary-500; @apply text-gray-800 hover:text-primary-400 dark:text-gray-300 dark:hover:text-primary-500;
} }
.link {
@apply underline cursor-pointer hover:text-primary-400 dark:hover:text-primary-500;
}
} }
@layer components { @layer components {
@ -319,5 +323,35 @@
} }
} }
} }
a {
@apply link;
}
.imageblock {
@apply flex flex-col items-center;
.title {
@apply text-sm text-center;
}
}
.stemblock {
@apply bg-gray-100 dark:bg-gray-900 p-4 rounded-lg;
}
table {
@apply w-full overflow-x-auto;
caption {
@apply text-sm;
}
thead, tbody {
th, td {
@apply border border-gray-200 dark:border-gray-700;
}
}
}
} }
} }

Loading…
Cancel
Save