Is there any way for me to modify the way that Sass will handle decimal places? I saw a few people saying that Sass will dynamically do the (target/parent)*100 calculation n
If you are using Compass, you can easily specify the precision in your project file (config.rb) without hacking the core:
Sass::Script::Number.precision = 8
For more information see Sass documentation