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

[menu-bar] Add Inter fonts to electron #160

Merged
merged 2 commits into from
Feb 5, 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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

- Add support for launching Expo updates. ([#134](https://github.com/expo/orbit/pull/134), [#137](https://github.com/expo/orbit/pull/137), [#138](https://github.com/expo/orbit/pull/138), [#144](https://github.com/expo/orbit/pull/144), [#148](https://github.com/expo/orbit/pull/148) by [@gabrieldonadel](https://github.com/gabrieldonadel))
- Cache builds by default. ([#156](https://github.com/expo/orbit/pull/156) by [@gabrieldonadel](https://github.com/gabrieldonadel))
- Add experimental support for Windows and Linux. ([#152](https://github.com/expo/orbit/pull/152), [#157](https://github.com/expo/orbit/pull/157), [#158](https://github.com/expo/orbit/pull/158) by [@gabrieldonadel](https://github.com/gabrieldonadel))
- Add experimental support for Windows and Linux. ([#152](https://github.com/expo/orbit/pull/152), [#157](https://github.com/expo/orbit/pull/157), [#158](https://github.com/expo/orbit/pull/158), [#160](https://github.com/expo/orbit/pull/160) by [@gabrieldonadel](https://github.com/gabrieldonadel))
- Improve fatal CLI error handling. ([#163](https://github.com/expo/orbit/pull/163) by [@gabrieldonadel](https://github.com/gabrieldonadel))

### 🐛 Bug fixes
Expand Down
17 changes: 17 additions & 0 deletions apps/menu-bar/global.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
/* Fonts */
@font-face {
src: url('src/assets/fonts/Inter/Inter-Regular.otf');
font-family: 'Inter-Regular';
}
@font-face {
src: url('src/assets/fonts/Inter/Inter-Medium.otf');
font-family: 'Inter-Medium';
}
@font-face {
src: url('src/assets/fonts/Inter/Inter-SemiBold.otf');
font-family: 'Inter-SemiBold';
}
@font-face {
src: url('src/assets/fonts/Inter/Inter-Bold.otf');
font-family: 'Inter-Bold';
}
1 change: 1 addition & 0 deletions apps/menu-bar/index.web.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { AppRegistry } from 'react-native';

import App from './src/App';
import './src/windows';
import './global.css';

const params = new URL(document.location).searchParams;
const module = params.get('moduleName');
Expand Down
Loading