Skip to content

Commit db54307

Browse files
authored
Updated selectors in CSS snippet as per HTML snippet (#30424)
1 parent 7409b29 commit db54307

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

guides/creating-a-custom-stepper-using-the-cdk-stepper.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -60,36 +60,36 @@ In the `app.component.css` file we can now style the stepper however we want:
6060
**custom-stepper.component.css**
6161

6262
```css
63-
.example-container {
63+
.container {
6464
border: 1px solid black;
6565
padding: 10px;
6666
margin: 10px;
6767
}
6868

69-
.example-step-navigation-bar {
69+
.step-navigation-bar {
7070
display: flex;
7171
justify-content: flex-start;
7272
margin-top: 10px;
7373
}
7474

75-
.example-active {
75+
.active {
7676
color: blue;
7777
}
7878

79-
.example-step {
79+
.step {
8080
background: transparent;
8181
border: 0;
8282
margin: 0 10px;
8383
padding: 10px;
8484
color: black;
8585
}
8686

87-
.example-step.example-active {
87+
.step.active {
8888
color: blue;
8989
border-bottom: 1px solid blue;
9090
}
9191

92-
.example-nav-button {
92+
.nav-button {
9393
background: transparent;
9494
border: 0;
9595
}

0 commit comments

Comments
 (0)