aws-samples / aws-serverless-connect-wallboard

Sample code for building a serverless wallboard for Amazon Connect.
MIT No Attribution
28 stars 18 forks source link

Remove Border #18

Open Aikleong7 opened 9 months ago

Aikleong7 commented 9 months ago

Hi, I want to remove the border by setting table.wallboard td {border: 0; font-family: Amazon Ember;} but it seems to be not removing the border.

Brettles commented 9 months ago

You need to tell CSS that the style you're applying has to override the style that is specified in the table itself. Try this:

table.wallboard td {border: 0 !important; font-family: Amazon Ember;}