Skip to content
This repository has been archived by the owner on Sep 26, 2024. It is now read-only.

fix: bugs #5676

Merged
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
2 changes: 1 addition & 1 deletion src/features/pages/home/live-pricing/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const LivePricing = () => {
align="center"
gap="4x"
direction="col"
padding="16x"
padding_block="10x"
md={{ direction: 'row', gap: '10x' }}
>
<LinkButton.Primary
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
gap: 1rem;

td {
padding: 1rem;
padding-block: 1rem;
Copy link
Contributor

@jia-deriv jia-deriv Sep 27, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why is padding-block using here instead of padding: 1rem 0? Is it padding-block better?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hi @jia-deriv padding bock is different its CSS logical properties,
I had to give padding only for top and bottom so I did this

display: flex;
justify-content: center;
inline-size: 6.9rem;
Expand Down