While making my custom editor i encountered a problem, When changing the "IndentLevel" it messes up the slider.
Before:

To fix this you can add 3 lines to the drawer (Packages/Simple MinMax Slider/Scripts/Editor/MinMaxSliderDrawer.cs)
1
Right after the comment around line #15 "//PrefixLabel returns the rect of the right part of the..."
int temp = EditorGUI.indentLevel;
2
Just below the first one, right after Rect[] splittedRect = SplitRect(controlRect,3);
EditorGUI.indentLevel = 0;
3
At the end of the OnGUI function, right after the if statement
EditorGUI.indentLevel = temp;
After

Hope this helps and maybe it can be included in the master repo :)
While making my custom editor i encountered a problem, When changing the "IndentLevel" it messes up the slider.
Before:
To fix this you can add 3 lines to the drawer (Packages/Simple MinMax Slider/Scripts/Editor/MinMaxSliderDrawer.cs)
1
Right after the comment around line #15 "//PrefixLabel returns the rect of the right part of the..."
int temp = EditorGUI.indentLevel;2
Just below the first one, right after
Rect[] splittedRect = SplitRect(controlRect,3);EditorGUI.indentLevel = 0;3
At the end of the OnGUI function, right after the if statement
EditorGUI.indentLevel = temp;After
Hope this helps and maybe it can be included in the master repo :)