Skip to content

Commit

Permalink
Adjust grid properties on feature-cards
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Benson committed Jun 4, 2020
1 parent fbccd22 commit 6fee71c
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@ import { display } from "@microsoft/fast-foundation";
export const FeatureCardStyles = css`
${display("grid")} :host {
contain: layout;
grid-template-columns: 150px repeat(2, minmax(120px, 1fr));
grid-template-columns: 1fr repeat(2, minmax(120px, 1fr));
grid-template-areas: "header main main";
grid-column-gap: calc(var(--design-unit) * 3px);
color: inherit;
box-sizing: border-box;
padding: calc(var(--design-unit) * 5px);
Expand Down

0 comments on commit 6fee71c

Please sign in to comment.