diff --git a/src/components/Steps/Step/index.js b/src/components/Steps/Step/index.js index 23d08502..2f15056c 100644 --- a/src/components/Steps/Step/index.js +++ b/src/components/Steps/Step/index.js @@ -6,10 +6,10 @@ import styles from "./styles.module.scss"; export default function Step({children, title, index, ...props}) { return
-
+

{title}

-
+
{children}
diff --git a/src/scss/base/_content.scss b/src/scss/base/_content.scss index 36ab2ed2..51807db5 100644 --- a/src/scss/base/_content.scss +++ b/src/scss/base/_content.scss @@ -130,7 +130,9 @@ ul{ } table{ - display: table; + @include media-breakpoint-up(lg) { + display: table; + } &, tbody{ width: 100%; } @@ -139,6 +141,9 @@ ul{ & > :last-child{ margin-bottom: 0; } + @include media-breakpoint-down(lg) { + min-width: 120px; + } } tr{ border: none;