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

[DDW-744] Adjust font for Delegation Center info message #2680

Merged
merged 3 commits into from
Sep 22, 2021
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
15 changes: 8 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
Changelog
=========
# Changelog

## vNext

Expand All @@ -9,6 +8,7 @@ Changelog

### Fixes

- Fixed font used for unavailable staking while updating messages ([PR 2680](https://github.com/input-output-hk/daedalus/pull/2680))
- Fixed crash when Yubikey is connected ([PR 2673](https://github.com/input-output-hk/daedalus/pull/2673))
- Updated Electron and related packages ([PR 2206](https://github.com/input-output-hk/daedalus/pull/2206))
- Fixed some Japanese translations for the external currencies ([PR 2667](https://github.com/input-output-hk/daedalus/pull/2667))
Expand Down Expand Up @@ -1104,7 +1104,7 @@ Changelog
- Fixed paper wallet certificate restoration ([PR 1055](https://github.com/input-output-hk/daedalus/pull/1055))
- Reduce layout re-renderings ([PR 1595](https://github.com/input-output-hk/daedalus/pull/1595))
- Fixed green Cardano theme white color and borders color ([PR 1584](https://github.com/input-output-hk/daedalus/pull/1584))
- Fixed flat button color ([PR 1586](https://github.com/input-output-hk/daedalus/pull/1586))
- Fixed flat button color ([PR 1586](https://github.com/input-output-hk/daedalus/pull/1586))

## 0.15.1

Expand Down Expand Up @@ -1506,6 +1506,7 @@ Changelog
## 0.9.1

### Features

- New Edit section in system menu with copy & paste and related actions ([PR 817](https://github.com/input-output-hk/daedalus/pull/817))

### Fixes
Expand Down Expand Up @@ -1853,15 +1854,15 @@ Changelog

- Added wallet creation screen that appears when there is no wallet yet
- Updated to the latest design specs and refactor to
[react-toolbox](http://react-toolbox.com/) instead of
material-ui for the UI components. This gives us much better style
customization and theming options.
[react-toolbox](http://react-toolbox.com/) instead of
material-ui for the UI components. This gives us much better style
customization and theming options.
- Cleaned up the boilerplate app menus
- Added basic form validations using [mobx-react-form](https://github.com/foxhound87/mobx-react-form)
- Added i18n support with [react-intl](https://github.com/yahoo/react-intl)
- Added wallet send / receive / transactions screens
- Form submitting UX updated to the design specifications with introduction of button loading spinners
and support for submitting the form with enter key
and support for submitting the form with enter key
- Added cut, copy & paste application menu items and keyboard shortcuts

### Fixes
Expand Down
4 changes: 2 additions & 2 deletions source/renderer/app/components/staking/_stakingConfig.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
%accentText {
@extend %baseTypography;
color: var(--theme-staking-font-color-accent);
font-family: var(--font-semibold);
font-family: var(--font-medium);
}

%accentBoldText {
Expand All @@ -24,7 +24,7 @@
%regularText {
@extend %baseTypography;
color: var(--theme-staking-font-color-regular);
font-family: var(--font-regular);
font-family: var(--font-light);
}

%regularLightColorText {
Expand Down