Zezombye / overpy

High-level language for the Overwatch Workshop with support for compilation and decompilation.
GNU General Public License v3.0
180 stars 28 forks source link

Fix overflow in edit action modal #305

Closed Mitcheljager closed 1 year ago

Mitcheljager commented 1 year ago

This PR fixes the overflow in the edit action modal by using display: grid to set a fixed layout. I've also added box-sizing: border-box to the content so we don't have to worry about calculating the padding separately. Do yourself a favor and add * { box-sizing: border-box } to your css to make your life a lot easier. This will mean if you set height: 100% that 100% will include any paddings, rather them having them add to that height.

image