Skip to content

Commit 7ed3eed

Browse files
authored
Merge pull request #261 from citizennet/dave/API-3656/Remove_Gotham_fonts
API-3656 Replace Gotham fonts
2 parents f643e66 + fbecd2b commit 7ed3eed

8 files changed

+350
-87
lines changed

css/src/fonts.css

+110-27
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/src/index.css

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/* Import preflight before any of our CSS so we can override it. */
22
@tailwind preflight;
33

4-
html, body { @apply .gotham; @apply .leading-normal; font-size: 12px; @apply .text-black-20; }
4+
html, body { @apply .metro; @apply .leading-normal; font-size: 12px; @apply .text-black-20; }
55
button, input, optgroup, select, textarea { @apply .leading-normal; }
66

77
/* Temp overrides */
@@ -69,7 +69,7 @@ dt {
6969
.transition-1\/2-out { transition: all 0.5s ease-out; }
7070
.transition-1-out { transition: all 1s ease-out; }
7171
.cc-blue-88 { caret-color: config('colors.blue-88'); }
72-
.gotham { font-family: "Gotham SSm A", "Gotham SSm B", sans-serif; }
72+
.metro { font-family: "Metropolis", sans-serif; }
7373
.no-content { content: ''; }
7474
.no-outline { outline: none !important; }
7575
.offscreen { @apply .fixed; left: -9999%; top: -9999%; z-index: -9999; }

dist/cn-tailwind.css

+117-25
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/cn-tailwind.min.css

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/cn-tailwind.scoped.css

+117-25
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/cn-tailwind.scoped.min.css

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
"name": "purescript-ocelot",
3-
"version": "0.35.0",
43
"private": true,
54
"scripts": {
65
"build-all": "make build",

readme.md

-3
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,6 @@ Our built CSS is version controlled, so that consuming applications can use it w
4646

4747
To create a new release:
4848

49-
1. Adjust the version in `package.json`.
50-
Some of our dependents rely on this version being correct.
51-
1. Submit the changes to `main` via a PR.
5249
1. Create a tag for the version.
5350
```sh
5451
$ git tag $NEW_VERSION

0 commit comments

Comments
 (0)