Skip to content

Commit

Permalink
Stylelint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
adamlaki committed Apr 20, 2024
1 parent c19bc33 commit 35e9934
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/scss/component/card/_grid.scss
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
--size: 2.25rem;
align-items: center;
background-color: color('tertiary');
block-size: var(--size);
border-radius: config('border-radius-sm', $display);
color: color('heading');
display: flex;
block-size: var(--size);
flex-shrink: 0;
inline-size: var(--size);
justify-content: center;
Expand Down
4 changes: 0 additions & 4 deletions src/scss/layout/_grid.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,6 @@
.l-grid {
padding-block: get-css-variable(--section-gap);

&__inner {

}

&__body {
--column: 1;
display: grid;
Expand Down
2 changes: 1 addition & 1 deletion src/scss/layout/_step.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
.l-step {
&__inner {
--column: 1;
display: grid;
background-color: color('background', 'highlighted');
border-radius: config('border-radius-xl', $display);
display: grid;
gap: spacer-clamp('m', 'l');
grid-template-columns: repeat(var(--column), minmax(0, 1fr));
padding: calc(#{get-css-variable(--section-gap)} / 1.25) calc(#{get-css-variable(--section-gap)} / 2);
Expand Down

0 comments on commit 35e9934

Please sign in to comment.