Skip to content

Commit

Permalink
fix(root): renamed wrapper classname
Browse files Browse the repository at this point in the history
renamed classname to wrapper as it was passing down styles to light-dom components with the same
classname
  • Loading branch information
GCHQ-Developer-741 committed Dec 4, 2024
1 parent fbed2b1 commit 067c8e7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/ComponentTesting/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
justify-content: space-between;
}

.container {
.wrapper {
border: 1px solid var(--ic-architectural-300);
border-radius: var(--ic-border-radius);
display: flex;
Expand Down
2 changes: 1 addition & 1 deletion src/components/ComponentTesting/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ const ComponentTesting: React.FC<ComponentTestingProps> = ({
};

return (
<div className="container">
<div className="wrapper">
<IcTabContext
onIcTabSelect={tabSelectCallback}
selectedTabIndex={selectedTab}
Expand Down

0 comments on commit 067c8e7

Please sign in to comment.