fix. 기본 스타일 수정

This commit is contained in:
clkim
2025-11-20 11:21:50 +09:00
parent b4797e4806
commit 9baf024268

View File

@@ -18,19 +18,20 @@
.use-base table {
@apply w-full border-collapse;
}
.use-base thead {
@apply bg-gray-100;
.use-base thead,
.use-base tfoot {
@apply bg-[#FAFAFA];
}
.use-base th,
.use-base td {
@apply border border-gray-300 px-4 py-2 text-left;
@apply border border-[#D9D9D9] px-4 py-2 text-left;
}
.use-base th {
@apply font-semibold bg-gray-50;
@apply font-semibold border-[#D9D9D9];
}
.use-base blockquote {
@apply border-l-4 border-gray-300 pl-4 italic text-gray-700;
@apply border-l-4 border-[#D9D9D9] pl-4 italic;
}
.use-base h1 {
@@ -68,10 +69,7 @@
}
.use-base a {
@apply text-blue-600 underline;
}
.use-base a:hover {
@apply text-blue-800;
@apply text-[#3C75FF] underline;
}
.use-base img {
@@ -79,10 +77,10 @@
}
.use-base pre {
@apply bg-gray-100 p-4 rounded overflow-x-auto mb-4;
@apply bg-[#FAFAFA] p-4 rounded overflow-x-auto mb-4;
}
.use-base code {
@apply bg-gray-100 px-1 py-0.5 rounded text-sm;
@apply bg-[#FAFAFA] px-1 py-0.5 rounded text-sm;
}
.use-base pre code {
@apply bg-transparent p-0;