the-new-css-reset
                                
                                
                                
                                    the-new-css-reset copied to clipboard
                            
                            
                            
                        Use logical properties
REF: https://web.dev/learn/design/responsive-images/#constrain-your-images
I am still trying to digest that, but basically we need to use this:
img {
  max-inline-size: 100%;
}
instead of this(which is what this library is providing right now), to accommodate other writing modes
https://github.com/elad2412/the-new-css-reset/blob/f6bfae6355b70dabdb5e81c8b90915249c9104d7/css/reset.css#L33-L35