Code Monkey home page Code Monkey logo

Comments (7)

Supportic avatar Supportic commented on June 1, 2024

After installing it with npm it depends how your stack looks like. If you are using any bundler like webpack you would need to import it into your entry js file with import 'include-media';.
The easiest way is to go to the dist folder from this repo and download the sass file. Afterwards put it in your sass files and import it @import. This would work but import will get deprecated at some point.

from include-media.

codiejay avatar codiejay commented on June 1, 2024

@Supportic thanks a lot.

i am just using this in a basic html/scss stack. nothing serious at all.
but when i import like so: @import (...thesassfile)
I can't see to understand how to use it

when i do

@include media("phone") {
header {display: 'none'}
}

I get a media isn't a mixin error in my live sass compiler.

from include-media.

Supportic avatar Supportic commented on June 1, 2024

Try to keep the syntax like here described: https://eduardoboucas.github.io/include-media/
You can open the copied sass files and adjust your own breakpoints in the $breakpoints map.
Try this:

.box {
  width: 200px;
  height: 500px;
  background: red;

  @include media('>desktop') {
    background: blue;
  }
}

or this

.box {
  width: 200px;
  height: 500px;
  background: red;
}

@include media('>desktop') {
  .box {
    background: blue;
  }
}

from include-media.

codiejay avatar codiejay commented on June 1, 2024

@Supportic thanks
but everytime i do that i get this error in my scss i get this error
image

this is how i import include it in my scss
@import url('/node_modules/include-media/dist/_include-media.scss');

from include-media.

Supportic avatar Supportic commented on June 1, 2024

Because @import is using a path relative to the file where you are trying to import. But this is not an issue of this repo it's more about how to import node_module packages into sass.
If your structure look like this:

- node_modules
- build
 | - index.scss

Then your path has to be: @import "../node_modules/include-media/dist/include-media"

from include-media.

jackmcpickle avatar jackmcpickle commented on June 1, 2024

Closing this issue due to age.

@codiejay hoping you got the answer you needed by now.

from include-media.

rlueder avatar rlueder commented on June 1, 2024

Just wanted to leave a note for anyone running into issues with Next.js 14.x and Turbopack the format below worked for me, inside your MyComponent.module.scss:

@use 'node_modules/include-media/dist/include-media' as im with (
  $breakpoints: (
    sm: 640px,
    ...
  )
);

from include-media.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.