Merge pull request #14 from jedmund/fix-editable-issues

Renamed grey-10 to grey-40
This commit is contained in:
Justin Edmund 2022-02-26 20:21:17 -08:00 committed by GitHub
commit 809ecc2067
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 10 additions and 30 deletions

View file

@ -59,7 +59,7 @@
} }
&:hover .icon svg { &:hover .icon svg {
color: $grey-10; color: $grey-40;
} }
.icon { .icon {

View file

@ -9,7 +9,7 @@
} }
.MenuItem { .MenuItem {
color: $grey-10; color: $grey-40;
font-weight: $normal; font-weight: $normal;
&:hover { &:hover {
@ -23,7 +23,7 @@
} }
a { a {
color: $grey-10; color: $grey-40;
} }
a, span { a, span {

View file

@ -7,7 +7,7 @@
&:hover label { &:hover label {
background: $grey-90; background: $grey-90;
color: $grey-10; color: $grey-40;
} }
& input { & input {

View file

@ -62,7 +62,7 @@
transition: all 0.18s ease-in-out; transition: all 0.18s ease-in-out;
&:hover .icon svg { &:hover .icon svg {
fill: $grey-10; fill: $grey-40;
} }
.icon { .icon {

View file

@ -86,7 +86,7 @@
transition: all 0.18s ease-in-out; transition: all 0.18s ease-in-out;
&:hover .icon svg { &:hover .icon svg {
fill: $grey-10; fill: $grey-40;
} }
img { img {

View file

@ -1,22 +1 @@
@import 'include-media/dist/_include-media'; @import 'include-media/dist/_include-media';
// Breakpoints
$breakpoints: (small: 320px, medium: 768px, large: 1024px);
// Sizing
$unit: 8px;
// Colors
$grey-00: #444;
$grey-10: #777;
$grey-50: #888;
$grey-80: #E9E9E9;
$grey-90: #F5F5F5;
$blue: #61B3FF;
$red: #FF6161;
// Font weight
$normal: 400;
$medium: 500;
$bold: 600;

View file

@ -103,7 +103,7 @@ h1 {
} }
svg { svg {
fill: $grey-10; fill: $grey-40;
} }
} }

View file

@ -9,8 +9,9 @@ $unit: 8px;
// Colors // Colors
$grey-00: #444; $grey-00: #444;
$grey-10: #777; $grey-40: #777;
$grey-50: #888; $grey-50: #888;
$grey-60: #A9A9A9;
$grey-70: #C6C6C6; $grey-70: #C6C6C6;
$grey-80: #E9E9E9; $grey-80: #E9E9E9;
$grey-90: #F5F5F5; $grey-90: #F5F5F5;