mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 12:56:41 +07:00
comment undelete
This commit is contained in:
parent
45d6e9a052
commit
ba6b0bfe98
6 changed files with 50 additions and 6 deletions
|
@ -55,9 +55,9 @@ const Button: FC<IButtonProps> = memo(
|
|||
...props,
|
||||
},
|
||||
[
|
||||
iconLeft && <Icon icon={iconLeft} size={20} key={0} />,
|
||||
iconLeft && <Icon icon={iconLeft} size={20} key={0} className={styles.icon_left} />,
|
||||
title ? <span>{title}</span> : children || null,
|
||||
iconRight && <Icon icon={iconRight} size={20} key={2} />,
|
||||
iconRight && <Icon icon={iconRight} size={20} key={2} className={styles.icon_right} />,
|
||||
]
|
||||
)
|
||||
);
|
||||
|
|
|
@ -122,7 +122,7 @@
|
|||
padding-right: 10px;
|
||||
|
||||
svg {
|
||||
margin: 0;
|
||||
margin: 0 !important;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -222,13 +222,13 @@
|
|||
}
|
||||
|
||||
.icon_left {
|
||||
margin-right: 10px;
|
||||
margin-right: $gap / 2 !important;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
}
|
||||
|
||||
.icon_right {
|
||||
margin-left: 10px;
|
||||
margin-left: $gap / 2 !important;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue