artfulrobot / aah

Nice CiviCRM bootstrap theme
Other
6 stars 4 forks source link

Support angular dashboard in CiviCRM 5.33+ #18

Closed mattwire closed 3 years ago

mattwire commented 3 years ago

You need to add something like this for the new angular dashboard at /civicrm:

/* Flexbox copied from civicrm.css (supports dashboard layout) */
.crm-container .crm-flex-box {
  display: flex;
}
.crm-container .crm-flex-box > * {
  flex: 1;
  min-width: 0; /* prevents getting squashed by whitespace:nowrap content */
}
.crm-container .crm-flex-box > .crm-flex-2 {
  flex: 2;
}
.crm-container .crm-flex-box > .crm-flex-3 {
  flex: 3;
}
.crm-container .crm-flex-box > .crm-flex-4 {
  flex: 4;
}
artfulrobot commented 3 years ago

Yeah, I noticed that on my buildkit. Thanks.

artfulrobot commented 3 years ago

this was fixed at some point!