Skip to content

Commit

Permalink
Fixed #76 - Stepper: number element box-shadow defect
Browse files Browse the repository at this point in the history
  • Loading branch information
tugcekucukoglu committed Mar 19, 2024
1 parent d580a73 commit 15a0ece
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
1 change: 1 addition & 0 deletions theme-base/components/panel/_stepper.scss
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@
}

.p-stepper-number {
position: relative;
display: flex;
align-items: center;
justify-content: center;
Expand Down
9 changes: 8 additions & 1 deletion themes/aura/aura-light/extensions/_stepper.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
.p-stepper {
.p-stepper-header {
.p-stepper-number {
box-shadow: 0px 0.5px 0px 0px rgba(0, 0, 0, 0.06), 0px 1px 1px 0px rgba(0, 0, 0, 0.12);
&::after {
content: ' ';
position: absolute;
width: 100%;
height: 100%;
border-radius: 50%;
box-shadow: 0px 0.5px 0px 0px rgba(0, 0, 0, 0.06), 0px 1px 1px 0px rgba(0, 0, 0, 0.12);
}
}

&.p-highlight {
Expand Down

0 comments on commit 15a0ece

Please sign in to comment.