Blame view

bower_components/prism/plugins/show-invisibles/prism-show-invisibles.css 292 Bytes
73bcce88   luigser   COMPONENTS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  .token.tab:not(:empty):before,
  .token.cr:before,
  .token.lf:before {
  	color: hsl(24, 20%, 85%);
  }
  
  .token.tab:not(:empty):before {
      content: '\21E5';
  }
  
  .token.cr:before {
      content: '\240D';
  }
  
  .token.crlf:before {
      content: '\240D\240A';
  }
  .token.lf:before {
      content: '\240A';
  }