Skip to content

Commit

Permalink
Improve arrow on details
Browse files Browse the repository at this point in the history
  • Loading branch information
henrypalacios committed Jan 30, 2024
1 parent eccd812 commit d35e9b7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/components/TxTable/TxDetail/AdvancedDetail/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ export function AdvancedDetail({ data }: Props) {
sx={{
fontWeight: "bold",
cursor: "pointer",
color: "#ffe873", // Color del enlace
textDecoration: "underline", // Subrayado para parecer un enlace
color: "#ffe873",
textDecoration: "underline",
}}
>
Details
Expand Down
4 changes: 3 additions & 1 deletion src/components/TxTable/TxDetail/AdvancedDetail/styled.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,16 @@ export const DetailsAccordionSummary = styled(
)(() => ({
backgroundColor: "inherit",
boxShadow: "none",
flexDirection: "row-reverse",
"& .MuiAccordionSummary-expandIconWrapper.Mui-expanded": {
transform: "rotate(90deg)",
transform: "rotate(270deg)",
},
"&:before": {
display: "none",
},
"&.Mui-expanded": {
margin: 0,
minHeight: "50px",
},
"& .MuiAccordionSummary-content": {
margin: 0,
Expand Down

0 comments on commit d35e9b7

Please sign in to comment.