14 lines
171 B
CSS
14 lines
171 B
CSS
@define-mixin no-touch
|
|
{
|
|
html.features-no-touch & {
|
|
@mixin-content;
|
|
}
|
|
}
|
|
|
|
@define-mixin touch
|
|
{
|
|
html.features-touch & {
|
|
@mixin-content;
|
|
}
|
|
}
|