Search


Search something to see results

ModuleScopeEnumOptions

Supported module scope

Index

Enumeration Members

Global: 32

use the global scope

ICSS: 256

export using ICSS module format

Local: 64

use the local scope

Pure: 128

do not allow selector without an id or class

Shortest: 512

use the shortest name possible. pattern is ignored. it will produce names such as

 .a {
content: 'a';
}

.b {
content: 'b';
}

.c {
content: 'c';
}
...