diff --git a/src/scss/cdb-components/headers.scss b/src/scss/cdb-components/headers.scss
index 02ca1b2..790850e 100644
--- a/src/scss/cdb-components/headers.scss
+++ b/src/scss/cdb-components/headers.scss
@@ -47,9 +47,11 @@
+
+
+
@@ -111,6 +114,7 @@
+
@@ -130,10 +134,28 @@
populates_places
+
+
+
+
+
+
```
*/
@@ -191,5 +213,34 @@
vertical-align: middle;
}
+/* Steps header */
+.CDB-Step-header {
+ @include display-flex();
+ @include flex-direction(row);
+ @include align-items(flex-start, flex-start);
+}
+.CDB-Step-headerNumeration {
+ width: $baseSize * 3;
+ height: $baseSize * 3;
+ border: 1px solid $cMainLine;
+ border-radius: 4px;
+ background-color: $cWhite;
+ color: $cTypo3;
+ font-size: $sFontSize-small;
+ line-height: $baseSize * 3;
+ text-align: center;
+ box-sizing: border-box;
+}
+.CDB-Step-headerInfo {
+ @include flex-grow(2);
+}
+.CDB-Step-headerTitle {
+ color: $cMainDark;
+}
+.CDB-Step-headerDetails {
+ color: $cTypo3;
-
+ &.is-uppercase {
+ text-transform: uppercase;
+ }
+}
diff --git a/src/scss/cdb-components/step.scss b/src/scss/cdb-components/step.scss
deleted file mode 100644
index 42f29f5..0000000
--- a/src/scss/cdb-components/step.scss
+++ /dev/null
@@ -1,68 +0,0 @@
-// Step styles
-// ----------------------------------------------
-
-/* SG
-# Step
-
-```
-
- -
-
-
-
-```
-*/
-
-@import '../cdb-utilities/mixins';
-@import '../cdb-variables/sizes';
-@import '../cdb-variables/colors';
-
-.CDB-Step-header {
- @include display-flex();
- @include flex-direction(row);
- @include align-items(flex-start, flex-start);
-}
-.CDB-Step-headerNumeration {
- width: $baseSize * 3;
- height: $baseSize * 3;
- border: 1px solid $cMainLine;
- border-radius: 4px;
- background-color: $cWhite;
- color: $cTypo3;
- font-size: $sFontSize-small;
- line-height: $baseSize * 3;
- text-align: center;
- box-sizing: border-box;
-}
-.CDB-Step-headerInfo {
- @include flex-grow(2);
-}
-.CDB-Step-headerTitle {
- color: $cMainDark;
-}
-.CDB-Step-headerDetails {
- color: $cTypo3;
-
- &.is-uppercase {
- text-transform: uppercase;
- }
-}
-.CDB-Step-action {
- width: $baseSize * 3;
- height: $baseSize * 3;
- font-size: 14px;
- text-align: center;
- cursor: pointer;
-}