13 lines
198 B
SCSS
13 lines
198 B
SCSS
|
@import "colors";
|
||
|
|
||
|
.code-block {
|
||
|
background-color: $black;
|
||
|
color: $white;
|
||
|
border-radius: 3px;
|
||
|
padding: 2rem;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
font-weight: bold;
|
||
|
overflow: auto;
|
||
|
}
|