Skip to content

Commit

Permalink
fix(ui): twweak content link style
Browse files Browse the repository at this point in the history
  • Loading branch information
egoist committed Mar 27, 2019
1 parent 1b02d0f commit 8fd43cd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
5 changes: 2 additions & 3 deletions src/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,9 @@ a {
}

.Content a {
display: inline-block;
border-bottom: var(--content-link-border);
color: var(--accent-color);
&:hover {
border-color: var(--content-link-hover-border-color);
text-decoration: underline;
}
}

Expand Down
3 changes: 2 additions & 1 deletion src/utils/cssVariables.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const defaultCssVariables = {
headerBackground: 'white',
textColor: '#000',
linkColor: '#000',
accentColor: 'rgb(6, 125, 247)',
accentColor: '#3eaf7c',
sidebarWidth: '280px',
sidebarBackground: 'white',
sidebarSectionTitleColor: 'rgb(136, 136, 136)',
Expand Down Expand Up @@ -37,6 +37,7 @@ const darkCssVariables = {
headerBackground: '#2f3136',
sidebarBackground: '#2f3136',
textColor: 'hsla(0,0%,100%,0.88)',
accentColor: '#0096cf',
linkColor: 'currentColor',
navLinkColor: '#eee',
navLinkActiveColor: '#fff',
Expand Down

0 comments on commit 8fd43cd

Please sign in to comment.