UCDavisLibrary / ucdlib-theme-wp

Wordpress theme port of the UC Davis SiteFarm One Theme
2 stars 0 forks source link

Brand box float style #244

Closed spelkey-ucd closed 1 year ago

spelkey-ucd commented 1 year ago

If the brand box is floated, it should be full width on mobile. See this news article for badness.

Should remove the style attributes on the twig file, and make a few new css rules:

@media (min-width: 768px) {
  .brand-textbox.u-align--right, .brand-textbox.u-align--left, ucd-theme-brand-textbox.u-align--right, ucd-theme-brand-textbox..u-align--left {
    max-width: 33%;
    min-width: auto;
  }
}
.brand-textbox.u-align--right, .brand-textbox.u-align--left, ucd-theme-brand-textbox.u-align--right, ucd-theme-brand-textbox..u-align--left {
  min-width: 100%;
}