Skip to content

Commit

Permalink
[DDW-751] Fix App Update Overlay height
Browse files Browse the repository at this point in the history
  • Loading branch information
mchappell committed Oct 21, 2021
1 parent e295e2d commit 5345117
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Expand Up @@ -14,14 +14,16 @@
top: 0;
width: 100vw;
z-index: 22;
padding: 20px 0;
@include overlay-backrop;

.content {
background-color: var(--theme-news-overlay-update-content-background-color);
font-size: 16px;
line-height: 1.2;
margin-bottom: 20px;
max-height: 464px;
min-height: 48px;
max-height: 210px;
opacity: 0.8;
overflow-y: scroll;
padding: 12px 20px;
Expand Down
2 changes: 1 addition & 1 deletion storybook/stories/news/_utils/fakeDataUpdate.js
Expand Up @@ -40,7 +40,7 @@ const commonUpdateData = {
export const updateEN = {
title: `Daedalus ${availableAppVersion} update`,
content:
'This release brings **cool new features** and *some bug fixes*. It provides a more seamless experience. \n\nYou can find more information in the [release notes](https://daedalus.io).',
'This release brings **cool new features** and *some bug fixes*. It provides a more seamless experience. \n\nYou can find more information in the [release notes](https://daedalus.io).\n\nThe following fixes are also included in this release:\n\n- Issue 1\n- Issue 2\n- Issue 3\n- Issue 4\n- Issue 5',
action: {
label: 'Download Daedalus at daedalus.io',
url: 'https://daedalus.io',
Expand Down

0 comments on commit 5345117

Please sign in to comment.