Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Chore/use brand colors and logos #245

Merged
merged 27 commits into from Jan 14, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
3c6e9f4
Remove unmaintained print styles
ryami333 Jan 13, 2020
8b80267
Remove unused table styles
ryami333 Jan 13, 2020
8eb8518
Remove unused pre-tag styles
ryami333 Jan 13, 2020
644c1bd
Remove unused material-ui styles
ryami333 Jan 13, 2020
d0ffc58
Remove unused hr-tag styles
ryami333 Jan 13, 2020
157a098
Remove unused ".example" selector styles
ryami333 Jan 13, 2020
d4aa627
Remove unused ".btn" selector styles
ryami333 Jan 13, 2020
6375741
Remove unused ".block" selector styles
ryami333 Jan 13, 2020
0db9b53
Remove unused icon styles
ryami333 Jan 13, 2020
ae7e2dd
Remove unused 'small' tag styles
ryami333 Jan 13, 2020
c04cd21
Remove unused 'blockquote' styles
ryami333 Jan 13, 2020
febaac6
Remove header list styles
ryami333 Jan 13, 2020
44bf5ff
Remove unused ".footer-menu" styles
ryami333 Jan 13, 2020
516cbaf
Remove unused ".anchor" styles
ryami333 Jan 13, 2020
065e207
Remove unused header list styles
ryami333 Jan 13, 2020
abf79e0
Remove unused "pre" styles
ryami333 Jan 13, 2020
35c74a8
Remove header list styles
ryami333 Jan 13, 2020
1e776ae
Remove redundant comment
ryami333 Jan 13, 2020
22abb08
Consume brand colors from "@springload/brand"
ryami333 Jan 13, 2020
0b37bcf
Use system 'serif' and 'sans-serif' font families instead of
ryami333 Jan 13, 2020
bd14799
Increase h1 font size.
ryami333 Jan 13, 2020
137b366
Remove two broken badges
ryami333 Jan 13, 2020
751169b
Use @springload/brand logo in footer (and update alt attribute)
ryami333 Jan 13, 2020
a2293cb
Remove height constraint on logo
ryami333 Jan 13, 2020
d93c37c
Remove space in badge links
ryami333 Jan 13, 2020
b1735a4
Remove old logo SVG
ryami333 Jan 13, 2020
da3ac30
Reinstate responsive styles
ryami333 Jan 14, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
38 changes: 11 additions & 27 deletions demo/src/index.html
Expand Up @@ -10,6 +10,10 @@
content="Accessible Accordion component for React"
/>
<link rel="shortcut icon" href="${require('./favicon.ico')}" />
<link
rel="stylesheet"
href="https://unpkg.com/@springload/brand@1.0.1/dist/themes.css"
/>
</head>
<body>
<div class="wrapper">
Expand All @@ -27,45 +31,25 @@
<p>
<a
href="https://www.npmjs.com/package/react-accessible-accordion"
>
<img
><img
alt="npm badge"
src="https://img.shields.io/npm/v/react-accessible-accordion.svg"
/>
</a>
<a
href="https://david-dm.org/springload/react-accessible-accordion"
>
<img
alt="dependency status badge"
src="https://david-dm.org/springload/react-accessible-accordion.svg"
/>
</a>
<a
href="https://david-dm.org/springload/react-accessible-accordion#info=devDependencies"
>
<img
alt="devDependency Status badge"
src="https://david-dm.org/springload/react-accessible-accordion/dev-status.svg"
/>
</a>
Comment on lines -36 to -51
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unrelated, but these badges don't exist any more.

/></a>
<a
href="http://wave.webaim.org/report#/https://springload.github.io/react-accessible-accordion"
>
<img
><img
alt="Accessibility Status badge"
src="https://img.shields.io/badge/a11y-tested-brightgreen.svg"
/>
</a>
/></a>
</p>
</header>
<section><div id="app-root"></div></section>
<footer>
<a href="https://www.springload.co.nz/" style="display: block;">
<img
alt="Springload Logo"
src="${require('./springload.svg')}"
style="width:144px;height:24px;"
alt=""
src="https://unpkg.com/@springload/brand@1.1.0/dist/logos/springload-logo-color-on-dark.svg"
style="width:144px;"
/>
</a>
</footer>
Expand Down
3 changes: 0 additions & 3 deletions demo/src/index.tsx
Expand Up @@ -16,9 +16,6 @@ import {
// tslint:disable-next-line no-import-side-effect
import './main.css';

// tslint:disable-next-line no-import-side-effect
import './springload.svg';

// tslint:disable-next-line no-import-side-effect ordered-imports
import '../../src/css/fancy-example.css';

Expand Down