Skip to content

Commit

Permalink
fix: add panel box-shadow (#1944)
Browse files Browse the repository at this point in the history
* fix: add box-shadow to panel

* fix: remove box-shadow from inner card and panels
  • Loading branch information
QuintonJason authored and kajabi-bot committed Aug 13, 2024
1 parent 2f4e387 commit c6e8ec3
Show file tree
Hide file tree
Showing 8 changed files with 36 additions and 0 deletions.
5 changes: 5 additions & 0 deletions docs/lib/sage-frontend/stylesheets/docs/_panel.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
.docs-panel {
@include sage-panel;

.sage-card,
.sage-panel {
box-shadow: none;
}

@media screen and (min-width: sage-breakpoint(lg-min)) {
padding: 5rem;
}
Expand Down
5 changes: 5 additions & 0 deletions packages/sage-assets/lib/stylesheets/components/_card.scss
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@ $-sage-card-background: transparent;
width: 100%;
background-color: sage-color(white);
box-shadow: sage-shadow(md);

.sage-card,
.sage-panel & {
box-shadow: none;
}
}

.sage-card--border-dashed {
Expand Down
5 changes: 5 additions & 0 deletions packages/sage-assets/lib/stylesheets/components/_choice.scss
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,11 @@ $-choice-radio-color-checked-inner: map-get($sage-radio-colors, checked-inner);
}
}

.sage-card & ,
.sage-panel & {
box-shadow: none;
}

.sage-tabs--layout-default &:not(:last-child) {
@media (max-width: sage-breakpoint(sm-max)) {
margin-bottom: sage-spacing(sm);
Expand Down
5 changes: 5 additions & 0 deletions packages/sage-assets/lib/stylesheets/components/_panel.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@
.sage-panel {
@include sage-panel;
@include sage-grid-panel;

.sage-card &,
.sage-panel {
box-shadow: none;
}
}

.sage-panel-grid {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ $-stat-box-image-max-width: rem(48px);
box-shadow: sage-shadow(md);
background-color: sage-color(white);

.sage-card &,
.sage-panel & {
box-shadow: none;
}

&.sage-stat-box--raised {
box-shadow: sage-shadow(sm);
border: 0;
Expand Down
5 changes: 5 additions & 0 deletions packages/sage-assets/lib/stylesheets/components/_switch.scss
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,11 @@ $-switch-toggle-size: rem(16px);
border-radius: sage-border(radius);
box-shadow: sage-shadow(md);
background-color: sage-color(white);

.sage-card &,
.sage-panel & {
box-shadow: none;
}
}

&.sage-switch--toggle-right {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ $-transaction-card-price-max-width: rem(100px);
.sage-transaction-card {
@include sage-card;

.sage-card &,
.sage-panel & {
box-shadow: none;
}

position: relative;
width: 100%;
background-color: sage-color(white);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -658,6 +658,7 @@
background-color: sage-color(white);
border: sage-border();
border-radius: sage-border(radius-large);
box-shadow: sage-shadow(md);
}

///
Expand Down

0 comments on commit c6e8ec3

Please sign in to comment.