Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: align status indicator table to grid #2681

Merged
merged 8 commits into from
Jan 18, 2022
18 changes: 11 additions & 7 deletions src/components/StatusIndicatorTable/StatusIndicator.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,11 @@
.iconGroup {
padding: 1rem;
display: flex;
width: 50%;
width: 100%;

@include carbon--breakpoint('lg') {
width: 50%;
}
}

.iconGroup.isDark {
Expand Down Expand Up @@ -79,15 +83,15 @@
border-bottom: none;
}

@media (max-width: 600px) {
.statusIndicatorTableWrapper {
margin-left: -1rem;
margin-right: -1rem;
}

@include carbon--breakpoint-between('sm', 'lg') {
.statusIndicatorTableWrapper {
margin-right: -1rem;
margin-left: -1rem;
overflow: scroll;
}
.iconGroup {
width: 100%;
}
.iconGroup.isDark {
display: none;
}
Expand Down
12 changes: 6 additions & 6 deletions src/components/StatusIndicatorTable/StatusIndicatorTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,18 @@ import {
const StatusIndicatorTable = ({ attention }) => (
<div className={statusIndicatorTableWrapper}>
<StructuredListWrapper className={table}>
<StructuredListHead>
<StructuredListRow head>
<StructuredListCell className={headerCell} head>
<StructuredListHead className='bx--grid'>
<StructuredListRow className='bx--row' head>
<StructuredListCell className={`bx--col-lg-4 bx--col-md-1 ${headerCell}`} head>
Icon
</StructuredListCell>
<StructuredListCell className={headerCell} head>
<StructuredListCell className={`bx--col-lg-2 bx--col-md-2 ${headerCell}`} head>
Name
</StructuredListCell>
<StructuredListCell className={headerCell} head>
<StructuredListCell className={`bx--col-lg-2 bx--col-md-2 ${headerCell}`} head>
Token
</StructuredListCell>
<StructuredListCell className={headerCell} head>
<StructuredListCell className={`bx--col-lg-4 bx--col-md-3 ${headerCell}`} head>
Description & usage
</StructuredListCell>
</StructuredListRow>
Expand Down