Removing left padding on Editing View (in Default theme) - CSS Snippet

Hi. In the default Obsidian theme, when I switch between the editing and reading view, the notes shift to the left, modifying the end of the lines. If you don’t like this behavior, I’ve found a snippet that works for me:

/*Left Padding Removal in Edit Mode for Default Theme:
*/

.markdown-source-view.mod-cm6 .cm-gutters{position:absolute!important;z-index:0;margin-left:0}

Case Background: I had the Minimal theme installed. This theme removes the padding to the left explained above when switching between views. It’s a great theme, but the problem I’m having is that it interferes with other snippets-css, so I decided to go back to the default theme and adapt what I like about Minimal with snippets. After much digging into the Minimal code, I found the code above. I hope it will be useful to anyone who has the same problem as me. (I have no idea about CSS, so you can imagine how much it cost me to find it).