Skip to content

Commit

Permalink
Merge pull request #170 from lidofinance/feature/si-1527-add-padding-…
Browse files Browse the repository at this point in the history
…from-the-texts-down

Fix padding in ModalSubtitleStyle
  • Loading branch information
alx-khramov committed Sep 20, 2024
2 parents 6b1d9ef + ed21cb1 commit 37f1a5b
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 4 deletions.
8 changes: 8 additions & 0 deletions packages/reef-knot/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# reef-knot

## 5.6.1

### Patch Changes

- 357e61f: Fix padding in ModalSubtitleStyle
- Updated dependencies [357e61f]
- @reef-knot/ui-react@2.1.4

## 5.6.0

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/reef-knot/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "reef-knot",
"version": "5.6.0",
"version": "5.6.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
Expand Down Expand Up @@ -44,7 +44,7 @@
"@reef-knot/connect-wallet-modal": "5.4.0",
"@reef-knot/core-react": "4.2.1",
"@reef-knot/web3-react": "4.0.1",
"@reef-knot/ui-react": "2.1.3",
"@reef-knot/ui-react": "2.1.4",
"@reef-knot/wallets-list": "2.3.0",
"@reef-knot/wallets-helpers": "2.1.0",
"@reef-knot/types": "2.1.0",
Expand Down
6 changes: 6 additions & 0 deletions packages/ui-react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @reef-knot/ui-react

## 2.1.4

### Patch Changes

- 357e61f: Fix padding in ModalSubtitleStyle

## 2.1.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/ui-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@reef-knot/ui-react",
"version": "2.1.3",
"version": "2.1.4",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
Expand Down
2 changes: 1 addition & 1 deletion packages/ui-react/src/components/modal/ModalStyles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ export const ModalSubtitleStyle = styled.div`
font-weight: 400;
line-height: 24px;
margin-top: -${spaceMap.xl}px;
padding: 0 ${spaceMap.xxl}px ${spaceMap.sm}px;
padding: 0 ${spaceMap.xxl}px ${spaceMap.xxl}px;
max-width: ${MAX_INNER_WIDTH}px;
box-sizing: content-box;
Expand Down

0 comments on commit 37f1a5b

Please sign in to comment.