Skip to content
Draft
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
12 changes: 12 additions & 0 deletions ui/packages/app/web/public/fonts/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
The font files in this directory are licensed under the SIL Open Font License, Version 1.1.

Poppins
Copyright 2020 The Poppins Project Authors (https://github.com/itfoundry/Poppins)
License: https://fonts.google.com/specimen/Poppins/license

Roboto Mono
Copyright 2015 The Roboto Mono Project Authors (https://github.com/googlefonts/RobotoMono)
License: https://fonts.google.com/specimen/Roboto+Mono/license

SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
https://openfontlicense.org
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
56 changes: 55 additions & 1 deletion ui/packages/app/web/src/style/profile.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,58 @@
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&family=Roboto+Mono&display=swap');
@font-face {
font-family: 'Poppins';
font-style: normal;
font-weight: 100;
font-display: swap;
src: url('/fonts/poppins-100.woff2') format('woff2');
}

@font-face {
font-family: 'Poppins';
font-style: normal;
font-weight: 200;
font-display: swap;
src: url('/fonts/poppins-200.woff2') format('woff2');
}

@font-face {
font-family: 'Poppins';
font-style: normal;
font-weight: 300;
font-display: swap;
src: url('/fonts/poppins-300.woff2') format('woff2');
}

@font-face {
font-family: 'Poppins';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url('/fonts/poppins-400.woff2') format('woff2');
}

@font-face {
font-family: 'Poppins';
font-style: normal;
font-weight: 500;
font-display: swap;
src: url('/fonts/poppins-500.woff2') format('woff2');
}

@font-face {
font-family: 'Poppins';
font-style: normal;
font-weight: 600;
font-display: swap;
src: url('/fonts/poppins-600.woff2') format('woff2');
}

@font-face {
font-family: 'Roboto Mono';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url('/fonts/roboto-mono-400.woff2') format('woff2');
}

.profile-search-bar .queryExpressionInput {
box-shadow: none;
Expand Down
Loading