Skip to content

Commit

Permalink
Color fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
jbum committed Dec 8, 2023
1 parent deea546 commit b1c7e01
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 5 deletions.
3 changes: 3 additions & 0 deletions components/base-css/dist/themes/cagov.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion components/site-header/src/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ $mobile-min: 767px;
.site-header {
padding: 0;
box-sizing: border-box;
background-color: var(--white, #fff);
background-color: var(--odi-brand, #ECF1F6);
border-bottom: 1px solid var(--gray-200, #d4d4d7);

.container {
Expand Down
2 changes: 1 addition & 1 deletion components/statewide-footer/src/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ footer {
}

.bg-light-grey {
background-color: var(--gray-50, #fafafa);
background-color: var(--odi-brand, #ECF1F6);
}

.pt-0 {
Expand Down
5 changes: 3 additions & 2 deletions components/statewide-header/src/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

/*official*/
.official-header {
background-color: var(--gray-50, #fafafa);
background-color: var(--primary-dark-color, #00315F);
padding: 0;
width: 100%;

Expand Down Expand Up @@ -50,13 +50,14 @@
}

.official-tag {
color: var(--white, #FFF);
margin: 0 var(--s-1, 0.5rem);
font-size: var(--font-size-sm, 0.875rem);
display: inherit;
}

.official-languages a {
color: var(--black, #000);
color: var(--white, #FFF);
padding: 0 var(--s-1, 0.5rem) 0 var(--s-1, 0.5rem);
text-decoration: underline;

Expand Down
2 changes: 1 addition & 1 deletion docs/pages/topic-index-sample-1.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
layout: single-column
title: Topic Index Sample 1
layout: single-column
---

## Projects
Expand Down
7 changes: 7 additions & 0 deletions docs/src/css/sass/layout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@
margin: 0 auto;
}

body {
background-color: var(--odi-brand, #ECF1F6);
}
.site-footer {
background-color: white;
}

.cagov-article {
margin: var(--s-4, 2rem) 0;
padding: 0 var(--s-2, 1rem);
Expand Down

0 comments on commit b1c7e01

Please sign in to comment.