Skip to content
This repository has been archived by the owner on Aug 18, 2022. It is now read-only.

Commit

Permalink
fix: border and input grey enhancements and consistency (#198)
Browse files Browse the repository at this point in the history
improved border consistency across inputs
increased the darkness of the grey in body and heading
  • Loading branch information
joebudi authored and Martin McKeaveney committed Feb 22, 2021
1 parent ce57184 commit 60fa469
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/Form/Input.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@
border: var(--border-blue);
}
input.outline {
border: var(--grey-2) 2px solid;
border: var(--border-light-2);
background: var(--background);
}
input.outline:active {
Expand Down
2 changes: 1 addition & 1 deletion src/Form/Select.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
background: var(--grey-2);
}
select.outline {
border: var(--border-dark);
border: var(--border-light-2);
}
select:focus {
border: var(--border-blue);
Expand Down
4 changes: 2 additions & 2 deletions src/Styleguide/Body.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,15 @@
}
.grey {
color: var(--grey-5);
color: var(--grey-6);
}
.black {
color: var(--ink);
}
.lh {
line-height: 1.5;
line-height: 1.75;
}
</style>

Expand Down
2 changes: 1 addition & 1 deletion src/Styleguide/Heading.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
}
.grey {
color: var(--grey-5);
color: var(--grey-6);
}
.black {
Expand Down

0 comments on commit 60fa469

Please sign in to comment.