Skip to content

Commit

Permalink
test(banner): fix import of css variables
Browse files Browse the repository at this point in the history
  • Loading branch information
max-umain committed Dec 13, 2024
1 parent 43586ba commit e16d2a1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</script>
</head>

<body class="tds-mode-dark" style="background-color: grey-958; padding: 20px">
<body class="tds-mode-dark" style="background-color: var(--tds-grey-958); padding: 20px">
<tds-banner
icon="truck"
header="This is a header text area"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</script>
</head>

<body class="tds-mode-dark" style="background-color: grey-958; padding: 20px">
<body class="tds-mode-dark" style="background-color: var(--tds-grey-958); padding: 20px">
<tds-banner
variant="error"
header="This is a header text area"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</script>
</head>

<body class="tds-mode-dark" style="background-color: grey-958; padding: 20px">
<body class="tds-mode-dark" style="background-color: var(--tds-grey-958); padding: 20px">
<tds-banner
variant="information"
header="This is a header text area"
Expand Down

0 comments on commit e16d2a1

Please sign in to comment.