/**
 * Set width of dashboard columns so that they appear as one
 * full-width column (compared to CiviCRM's normal 2-column
 * layout).
 * This was previously done by core hacks to civicrm/css/dashboard.css 
 * but as of this date (after upgrading civicrm to version 5.35.2)
 * we're doing it here, so that it will survive future upgrades.
 * By: Allen Shaw (allen@joineryhq.com) 2021-12-20
 */
#civicrm-dashboard > .crm-flex-box > .crm-flex-2 {
  min-width: 600px !important;
}

