ebiwd / EBI-Framework

The EMBL-EBI Visual Framework for websites and services.
https://www.ebi.ac.uk/style-lab/websites/
19 stars 16 forks source link

Remove redundant `.row` class on announcements #133

Closed khawkins98 closed 6 years ago

khawkins98 commented 6 years ago

This causes extra bleeding off the right/left of the screen:

image

Fix is for:

  wrapper.className = "row callout " + (message.priority || "");

to become

  wrapper.className = "callout " + (message.priority || "");