This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Works in both libsass and dart-sass. | |
.one { | |
content: simple-selectors(&); | |
} | |
// Works only in libsass. | |
// Error in dart-sass: Error: $selector: expected selector. | |
.one { | |
.two { | |
content: simple-selectors(&); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Works in both libsass and dart-sass. | |
.one { | |
content: simple-selectors(&); | |
} | |
// Works only in libsass. | |
// Error in dart-sass: Error: $selector: expected selector. | |
.one { | |
.two { | |
content: simple-selectors(&); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import 'breakpoint-sass/stylesheets/breakpoint'; | |
$b-xs: 480px; | |
$b-m: 768px; | |
$b-l: 1024px; | |
$b-xl: 1280px; | |
@mixin skeleton-items-content($element) { | |
$selectors: ''; | |
@for $i from 1 through 4 { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const { Octokit } = require('@octokit/rest'); | |
const dotEnv = require('dotenv'); | |
dotEnv.config(); | |
const config = { | |
org: process.env.ORG, | |
auth: process.env.DEV_TOKEN, | |
count: 3, | |
limit: 100 |