Sankalp Singha
Sankalp Singha

Reputation: 4546

How to move the Mini Profiler (ms) bubble to the Right Side in Rails

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?

Upvotes: 6

Views: 954

Answers (1)

Elliott
Elliott

Reputation: 41

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

Upvotes: 4

Related Questions