Commit 75bdf9a8 authored by Charles Bachmeier's avatar Charles Bachmeier Committed by GitHub

feat: [DetailsV2] Add left padding to trait rows and headers (#6534)

* feat: [DetailsV2] Add left padding to trait rows

* update snapshot

---------
Co-authored-by: default avatarCharles Bachmeier <charlie@genie.xyz>
parent efbe3994
...@@ -13,7 +13,7 @@ import { Tab, TabbedComponent } from './TabbedComponent' ...@@ -13,7 +13,7 @@ import { Tab, TabbedComponent } from './TabbedComponent'
import { TraitRow } from './TraitRow' import { TraitRow } from './TraitRow'
const TraitsHeaderContainer = styled(Row)` const TraitsHeaderContainer = styled(Row)`
padding-right: 12px; padding: 0px 12px;
` `
const TraitsHeader = styled(ThemedText.SubHeaderSmall)<{ const TraitsHeader = styled(ThemedText.SubHeaderSmall)<{
......
...@@ -25,7 +25,7 @@ const SubheaderTinyHidden = styled(SubheaderTiny)` ...@@ -25,7 +25,7 @@ const SubheaderTinyHidden = styled(SubheaderTiny)`
` `
const TraitRowContainer = styled(Row)` const TraitRowContainer = styled(Row)`
padding: 12px 18px 12px 0px; padding: 12px 18px 12px 12px;
border-radius: 12px; border-radius: 12px;
cursor: pointer; cursor: pointer;
text-decoration: none; text-decoration: none;
......
...@@ -89,7 +89,7 @@ exports[`data page trait component does not load with asset with no traits 1`] = ...@@ -89,7 +89,7 @@ exports[`data page trait component does not load with asset with no traits 1`] =
} }
.c8 { .c8 {
padding-right: 12px; padding: 0px 12px;
} }
.c10 { .c10 {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment