jonbio/css/tailwind.css
Isaac aaa9e7da70
fix: code block space
Fixing the spaces on the right side of the code block by adding padding and fix the with overflow.
2021-08-30 20:44:01 +01:00

34 lines
570 B
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
.remark-code-title {
@apply px-5 py-3 font-mono text-sm font-bold text-gray-200 bg-gray-700 rounded-t;
}
.remark-code-title + div > pre {
@apply mt-0 rounded-t-none;
}
.task-list-item:before {
@apply hidden;
}
.code-line {
@apply pl-4 -mx-4 border-l-4 border-gray-800 w-max pr-4;
}
.highlight-line {
@apply -mx-4 bg-gray-700 bg-opacity-50 border-l-4 border-primary-500;
}
.line-number::before {
@apply pr-4 -ml-2 text-gray-400;
content: attr(line);
}
html {
scroll-behavior: smooth;
}