5

I have tried overriding CSS but am not able to move the bubble that shows up on the left to move to the right side. Is there any setting that I can change to achieve this in Rails 4?

Andrew Grimm
  • 78,473
  • 57
  • 200
  • 338
Sankalp Singha
  • 4,461
  • 5
  • 39
  • 58

1 Answers1

3

You can set configuration options using the configuration accessor on Rack::MiniProfiler. For example:

Rack::MiniProfiler.config.position = 'right'

https://github.com/MiniProfiler/rack-mini-profiler

Elliott
  • 31
  • 2