mirror of
https://github.com/supabase/supabase.git
synced 2026-05-23 19:13:13 +08:00
25 lines
360 B
CSS
25 lines
360 B
CSS
.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;
|
|
}
|