Things that need fixing | UniSC | University of the Sunshine Coast, Queensland, Australia

Accessibility links

Things that need fixing

Workarounds until these get fixed:

Card type feature light multiple cards

Last card in deck needs padding-bottom: 1.5rem to be added

First card

This is not effected.

To fix on the page

Add this to css header include in control tab

.card-deck .feature-card:not(:only-child):last-child  {
    border-bottom: 1px solid transparent;
    border-top: 1px solid transparent;
    padding-bottom: 0;
}

Problem: Card type 'wide' with background color spacing issue

Heading and lead don't sit right in this combination, there is too much gap below the text and before the cards. Either don't use this combination or see the workaround below.

Fix

Add this to the css header include in the control tab:

.grid-cards.--has-bg 
  .card-deck .feature-card:first-child {
    padding-top: 0;
}

Problem: Card type 'wide' with background color spacing issue

Fix

Add this to the css header include in the control tab:

.grid-cards.--has-bg 
  .card-deck .feature-card:first-child {
    padding-top: 0;
}