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

API-3656 Replace Gotham fonts #261

Merged
merged 2 commits into from
Jan 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
137 changes: 110 additions & 27 deletions css/src/fonts.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions css/src/index.css
@@ -1,7 +1,7 @@
/* Import preflight before any of our CSS so we can override it. */
@tailwind preflight;

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

/* Temp overrides */
Expand Down Expand Up @@ -69,7 +69,7 @@ dt {
.transition-1\/2-out { transition: all 0.5s ease-out; }
.transition-1-out { transition: all 1s ease-out; }
.cc-blue-88 { caret-color: config('colors.blue-88'); }
.gotham { font-family: "Gotham SSm A", "Gotham SSm B", sans-serif; }
.metro { font-family: "Metropolis", sans-serif; }
.no-content { content: ''; }
.no-outline { outline: none !important; }
.offscreen { @apply .fixed; left: -9999%; top: -9999%; z-index: -9999; }
Expand Down
142 changes: 117 additions & 25 deletions dist/cn-tailwind.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/cn-tailwind.min.css

Large diffs are not rendered by default.

142 changes: 117 additions & 25 deletions dist/cn-tailwind.scoped.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/cn-tailwind.scoped.min.css

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion package.json
@@ -1,6 +1,5 @@
{
"name": "purescript-ocelot",
"version": "0.35.0",
"private": true,
"scripts": {
"build-all": "make build",
Expand Down
3 changes: 0 additions & 3 deletions readme.md
Expand Up @@ -46,9 +46,6 @@ Our built CSS is version controlled, so that consuming applications can use it w

To create a new release:

1. Adjust the version in `package.json`.
Some of our dependents rely on this version being correct.
1. Submit the changes to `main` via a PR.
1. Create a tag for the version.
```sh
$ git tag $NEW_VERSION
Expand Down