Files
supabase/www/components/CodeBlock/CodeBlock.module.css
2021-03-31 23:31:25 +08:00

31 lines
468 B
CSS

.code-block {
@apply rounded-lg;
/* padding-top: 8px !important; */
@apply border border-gray-600;
}
.code-block::before {
content: '';
background: #1e1e1e;
height: 10px;
width: 48px;
display: block;
}
.code-block::after {
content: '';
background: #1e1e1e;
height: 12px;
width: 48px;
display: block;
}
.code-block code .linenumber {
margin-right: 4px;
}
.code-block code::after,
.code-block code::before {
content: none !important;
}