Skip to content

Commit

Permalink
feat: Remove background and text colors from faqs
Browse files Browse the repository at this point in the history
  • Loading branch information
ChesneyJulian committed Sep 24, 2024
1 parent c44c22e commit d39bd4f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ module('Integration | Component | mktg/faq', function (hooks) {
</template>);

assert
.dom('.d-flex.flex-column.p-2.m-2.bg-white.rounded.test')
.dom('.d-flex.flex-column.p-2.m-2.rounded.test')
.exists('FAQ renders with passed attributes');

assert
Expand Down
4 changes: 2 additions & 2 deletions packages/ember-core/src/components/mktg/faq.gts
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ export default class FaqComponent extends Component<FaqSignature> {
}

<template>
<div class="d-flex flex-column p-2 m-2 bg-white rounded" ...attributes>
<div class="d-flex flex-column p-2 m-2 rounded" ...attributes>
<div class="d-flex justify-content-between align-items-center">
<p class="fw-bold m-2">{{this.question}}</p>
<button type="button" class="btn" {{on "click" this.toggleMenu}}><i
class="text-dark h2 {{this.menuIcon}}"
class="h2 {{this.menuIcon}}"
/></button>
</div>
<div class="mx-2 mb-0 mt-2 {{this.classList}}">
Expand Down

0 comments on commit d39bd4f

Please sign in to comment.