Skip to content

Commit eaa1d29

Browse files
committed
Fix hr border color
This was a hard-coded color. Need to use border-color here.
1 parent 1b29cb5 commit eaa1d29

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

app/assets/builds/alchemy/admin.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/stylesheets/alchemy/admin/base.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ form {
8888
hr {
8989
border: 0 none;
9090
border-bottom: 1px solid;
91+
border-color: var(--border-color);
9192
opacity: 0.5;
9293
}
9394

app/stylesheets/alchemy/admin/elements.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -457,7 +457,7 @@ alchemy-tinymce {
457457
width: 100%;
458458
margin: 0 0 var(--spacing-4) 0;
459459
border: 0 none;
460-
border-top: 1px solid var(--color-grey_light);
460+
border-top: 1px solid var(--border-color);
461461
opacity: 1;
462462
}
463463
}

0 commit comments

Comments
 (0)