Hello! I have an issue here: scriptin/brackets-indent-softwraps/issues/4 which explains the problem.
After investigating, I found a quick fix, but not sure if it's correct. In your CSS you have a declaration display: inline-block;. If I change this to inline (which is default), it gets fixed. I'm not sure if inline-block is really required by your plugin to work properly, but it seems to work fine w/o it.
You can see that for some reason when it is inline-block, it sets width and height to fixed values. If I set display to inline, both width and height have value auto.
Can you change it or am I missing something on my side?
Hello! I have an issue here: scriptin/brackets-indent-softwraps/issues/4 which explains the problem.
After investigating, I found a quick fix, but not sure if it's correct. In your CSS you have a declaration
display: inline-block;
. If I change this toinline
(which is default), it gets fixed. I'm not sure ifinline-block
is really required by your plugin to work properly, but it seems to work fine w/o it.You can see that for some reason when it is
inline-block
, it sets width and height to fixed values. If I set display toinline
, both width and height have valueauto
.Can you change it or am I missing something on my side?