Skip to content

Commit

Permalink
Fix more scss files
Browse files Browse the repository at this point in the history
  • Loading branch information
folkforms committed May 21, 2024
1 parent dedaab5 commit 6677ab4
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion packages/carbon-addons-devenv/src/scss/logo.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.#{$prefix}--logo {
box-shadow: inset 0 0 0 2px $carbon--white-0;
box-shadow: inset 0 0 0 2px themes.get("layer-01");
border-radius: $border-radius-round;
font-weight: 500;
overflow: hidden;
Expand Down
16 changes: 8 additions & 8 deletions packages/carbon-addons-devenv/src/scss/personfolio.scss
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
.#{$prefix}--personfolio {
background-color: $ui-01;
color: $text-01;
background-color: themes.get("layer-01");
color: themes.get("text-primary");
border-radius: 6px;
border-width: 1px 1px 1px 1px;
border-style: solid !important;
padding: $spacing-05;
margin-top: $spacing-05;
padding: themes.get("spacing-05");
margin-top: themes.get("spacing-05");

&--child {
border-color: $support-01;
border-color: themes.get("support-error");
}

&--youngadult {
border-color: $support-02;
border-color: themes.get("support-success");
}

&--adult {
border-color: $support-03;
border-color: themes.get("support-warning");
}

&--senior {
border-color: $support-04;
border-color: themes.get("support-info");
}
}

0 comments on commit 6677ab4

Please sign in to comment.