blocknotes/activeadmin_materialize_theme

Is theme Full Screen?

Closed this issue · 1 comments

Thanks in advance for the great work. Not sure if its a bug or I installed improperlly. But shluld it be full screen, if not how would I make these changes? Please see depicted screenshot using rails 7.

full_screen_material

While I don't know if this is the proper way, this is how I achieved it :)

body.active_admin #wrapper {
  max-width: 98% !important;
}

@media only screen and (min-width : 993px) {
    body.active_admin #wrapper {
    width: 98% !important;
  }
}

@media only screen and (min-width : 601px) {
  .container, body.active_admin #wrapper {
    width: 98% !important;
  }
}