Skip to content

Commit 201e372

Browse files
adamzapbmispelon
authored andcommitted
Remove unneeded box-shadow mixins
As of 3851b2f, these are only used once and contain a single rule each.
1 parent 13557dc commit 201e372

File tree

2 files changed

+2
-11
lines changed

2 files changed

+2
-11
lines changed

djangoproject/scss/_style.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ blockquote {
358358

359359
.mdzr-boxshadow & {
360360
border: none;
361-
@include secondary-shadow-top;
361+
box-shadow: 0 4px 8px rgba(12, 60, 38, 0.07);
362362
}
363363
}
364364

@@ -432,7 +432,7 @@ blockquote {
432432

433433
.mdzr-boxshadow & {
434434
border: none;
435-
@include secondary-shadow-bottom;
435+
box-shadow: 0 -4px 8px rgba(12, 60, 38, 0.07);
436436
}
437437
}
438438

djangoproject/scss/_utils.scss

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -170,15 +170,6 @@ html {
170170

171171
}
172172

173-
// Secondary content box-shadow:
174-
@mixin secondary-shadow-top {
175-
box-shadow: 0 4px 8px rgba(12, 60, 38, 0.07);
176-
}
177-
178-
@mixin secondary-shadow-bottom {
179-
box-shadow: 0 -4px 8px rgba(12, 60, 38, 0.07);
180-
}
181-
182173
@mixin framed-image {
183174
padding: 20px;
184175
border: 1px solid var(--hairline-color);

0 commit comments

Comments
 (0)