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

fixed the font for card component #365

Closed
wants to merge 1 commit into from
Closed
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 lib/index.css.map

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions lib/sass/common/sass/fonts.scss
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
@include font-face('Inter-Bold', $font-path + 'inter/Inter-Bold');
@include font-face('Inter-Light', $font-path + 'inter/Inter-Light');
@include font-face('Inter-Medium', $font-path + 'inter/Inter-Medium');
@include font-face('Inter-Regular', $font-path + 'inter/Inter-Regular');
@include font-face('Inter-SemiBold', $font-path + 'inter/Inter-SemiBold');
@include font-face('Inter-Bold', $font-path + 'Inter-Bold');
@include font-face('Inter-Light', $font-path + 'Inter-Light');
@include font-face('Inter-Medium', $font-path + 'Inter-Medium');
@include font-face('Inter-Regular', $font-path + 'Inter-Regular');
@include font-face('Inter-SemiBold', $font-path + 'Inter-SemiBold');
@include font-face('OpenSans-Bold', $font-path + 'OpenSans-Bold');
@include font-face('OpenSans-SemiBold', $font-path + 'OpenSans-SemiBold');
@include font-face('OpenSans-Regular', $font-path + 'OpenSans-Regular');
Expand Down
1 change: 1 addition & 0 deletions lib/sass/components/Card/sass/Card.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
@use 'sass:map';

.tyk-card {
background-color: white;
border: 1px solid theme-color('background', 'base');
Expand Down
2 changes: 1 addition & 1 deletion lib/tyk-ui.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tyk-technologies/tyk-ui",
"version": "3.1.0",
"version": "3.1.1",
"description": "Tyk UI - ui reusable components",
"main": "lib/index.js",
"scripts": {
Expand Down
File renamed without changes.
File renamed without changes.
10 changes: 5 additions & 5 deletions src/common/sass/fonts.scss
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
@include font-face('Inter-Bold', $font-path + 'inter/Inter-Bold');
@include font-face('Inter-Light', $font-path + 'inter/Inter-Light');
@include font-face('Inter-Medium', $font-path + 'inter/Inter-Medium');
@include font-face('Inter-Regular', $font-path + 'inter/Inter-Regular');
@include font-face('Inter-SemiBold', $font-path + 'inter/Inter-SemiBold');
@include font-face('Inter-Bold', $font-path + 'Inter-Bold');
@include font-face('Inter-Light', $font-path + 'Inter-Light');
@include font-face('Inter-Medium', $font-path + 'Inter-Medium');
@include font-face('Inter-Regular', $font-path + 'Inter-Regular');
@include font-face('Inter-SemiBold', $font-path + 'Inter-SemiBold');
@include font-face('OpenSans-Bold', $font-path + 'OpenSans-Bold');
@include font-face('OpenSans-SemiBold', $font-path + 'OpenSans-SemiBold');
@include font-face('OpenSans-Regular', $font-path + 'OpenSans-Regular');
Expand Down
1 change: 1 addition & 0 deletions src/components/Card/sass/Card.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
@use 'sass:map';

.tyk-card {
background-color: white;
border: 1px solid theme-color('background', 'base');
Expand Down
Loading