File: composes.css

package info (click to toggle)
node-css-loader 6.8.1%2B~cs14.0.17-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 22,712 kB
  • sloc: javascript: 12,623; makefile: 2
file content (24 lines) | stat: -rw-r--r-- 309 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
@value v_def from './values.css';
@value v_other-other from './values.css';
@value s-white from './values.css';
@value m-small from './values.css';

.ghi {
  color: v_def;
}

.my-class {
  color: s-white;
}

.other {
  display: m-small;
}

.other-other {
  width: v_def;
}

.green {
  color: v_other-other;
}