Daniel Flores

Results 20 comments of Daniel Flores

Same problem here, even with the last version. It has problems working inside a modal, whereas it works fine outside.

Had this same problem, I was checking themes, now I want to use specifically one but there is no direct way to do it. I tried `hyper i verminal` again...

I'm getting this problem with href containing URLs to other websites. (with parcel 1) UPDATE: I used parcel 2 and it's ok.

hello, same problem here, I was struggling trying to figure out what was the problem; thanks for reporting it and the workarounds.

It seems realted to the strict `unclear-type` rule in `.flowconfig`.

I fixed it by updating webpack and using https://github.com/webpack-contrib/mini-css-extract-plugin. ```js // scss handling config.module.rules.push({ test: /\.scss$/, use: [ MiniCssExtractPlugin.loader, 'babel-loader', { loader: 'css-loader', options: { url: false, minimize: !dev, importLoaders:...

+1, version 0.5 is stuck in npm.

I agree with you. When I try to verify a token, only the ones that have a delta >= -50 are valid. I'm not sure if this delta has to...

Hello, I had a similar problem with this kind of import `@import '../node_modules/@ibm/plex/scss/ibm-plex.scss';`, got solved by wrapping it with `url()` `@import url('../node_modules/@ibm/plex/scss/ibm-plex.scss');` Thanks!