Yeongmin Kim

Results 12 comments of Yeongmin Kim

> It's not appropriate to override `min-inline-size` for `fieldset`. Both Chromium and Gecko apply `min-inline-size: min-content` to fieldsets in their UA stylesheets, while Safari applies a similar `min-width: min-content`. So...

> I looked at the code, it seems partially implemented but if you search for the emoji it will still show up. @j4hangir yeah, i can see the emoji disappear...

> Even the name is chosen badly tbh, it should simply be exclude imo. I agree with this. @EtienneLem I solved the problem. but I think that "Readme" needs to...

> @oinochoe How did you solved the problem? @denisveli https://github.com/missive/emoji-mart/issues/788#issuecomment-1412991040 https://github.com/missive/emoji-mart/issues/788#issuecomment-1416786959 I solved this issue via comments above.

I have solved this problem via downgrading this module to 5.0.0 version and installing @types/emoji-mart

@anaisbetts Hello, I am using electron-builder-squirrel-windows version 24, and I set the following settings in electron-builder settings to run electron with administrator privileges to create a folder. ``` ... "build":...

I agree with them. I'm curious if there are any benefits to altering the userAgent style. Also, using the asterisk seems to be not a good method.

I agree with elad2412 . Sometimes people may want to specify "cursor" as "pointer" for the tag. However, many people prefer to use "text" to indicate that the text is...

@mesr I agree. It can be overwritten by the user, but it seems that existence is necessary as a layer that needs to be processed before that. However, the question...

I have solved this issue as below code. **as-is** ```js editor.on('init', function() { }); editor.on('keyup', function(e) { if(27 !== e.keyCode) { // do something.. } }); ``` **to-be** ```js editor.on('init',...