[Documentation] The import needs to be after the variables
See original GitHub issueEnvironment
Browsers: Chrome 75.0.3770.142 OS: Windows 10
Steps to reproduce
$grid-breakpoints: (
'xs': 0,
'sm': 576px,
'md': 768px,
'lg': 992px,
'xl': 1200px
);
@import '~vuetify/src/styles/styles.sass';
Expected Behavior
The breakpoint changed!
Actual Behavior
If I write like the documentation , don’t work
Reproduction Link
Issue Analytics
- State:
- Created 4 years ago
- Comments:25 (3 by maintainers)
Top Results From Across the Web
5. The import system — Python 3.11.1 documentation
The import statement combines two operations; it searches for the named module, then it binds the results of that search to a name...
Read more >import - JavaScript - MDN Web Docs - Mozilla
In order to use the import declaration in a source file, the file must be interpreted by the runtime as a module. In...
Read more >Python import: Advanced Techniques and Tips
In Python, you use the import keyword to make code in one module available in another. Imports in Python are important for structuring...
Read more >Command: import | Terraform - HashiCorp Developer
The terraform import command brings existing resources into Terraform state.
Read more >Documentation - Modules - TypeScript
declared in a module are not visible outside the module unless they are explicitly exported using one of the export forms. Conversely, to...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@DimosthenisK I finally find the problem
the key is
treeShake
it only works in production if i not manually setup it to ‘true’customVariables
only work intreeShake
modethx man really appreciate it ❗️
@hereiscasio You also need to set the breakpoints in the nuxt config:
My variables.scss looks currently like this: