blob: 3792ee141c98ee7b4480421772ef453825ac3bfc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* Error: Undefined variable.
* ,
* 2 | background-color: $bg-txt-on;
* | ^^^^^^^^^^
* '
* scss/_txt.scss 2:23 root stylesheet */
body::before {
font-family: "Source Code Pro", "SF Mono", Monaco, Inconsolata, "Fira Mono",
"Droid Sans Mono", monospace, monospace;
white-space: pre;
display: block;
padding: 1em;
margin-bottom: 1em;
border-bottom: 2px solid black;
content: "Error: Undefined variable.\a \2577 \a 2 \2502 background-color: $bg-txt-on;\a \2502 ^^^^^^^^^^\a \2575 \a scss/_txt.scss 2:23 root stylesheet";
}
|