mirror of
https://github.com/status-im/nimbus-gui.git
synced 2025-02-12 19:36:35 +00:00
feat(management-tabs): style borders and padding
This commit is contained in:
parent
197e3c0cd6
commit
3f94c5d3ab
@ -47,10 +47,7 @@ const isValidNameOrAddress = (
|
||||
return false
|
||||
}
|
||||
|
||||
const ManagementTable = ({
|
||||
tab,
|
||||
searchValue,
|
||||
}: ManagementTableProps) => {
|
||||
const ManagementTable = ({ tab, searchValue }: ManagementTableProps) => {
|
||||
const [validators, setValidators] = useState<Validator[]>([])
|
||||
const [isAllSelected, setIsAllSelected] = useState(false)
|
||||
|
||||
|
@ -15,9 +15,24 @@ const ManagementTabs = () => {
|
||||
}
|
||||
|
||||
return (
|
||||
<div style={{ width: '100%' }}>
|
||||
<div
|
||||
style={{
|
||||
width: '100%',
|
||||
border: '1px solid #E7EAEE',
|
||||
borderRadius: '16px',
|
||||
borderBottom: 'none',
|
||||
borderBottomLeftRadius: '0',
|
||||
borderBottomRightRadius: '0',
|
||||
}}
|
||||
>
|
||||
<Tabs defaultValue={VALIDATOR_TABS_MANAGEMENT[0]}>
|
||||
<div className="tabs transparent-scrollbar">
|
||||
<div
|
||||
className="tabs transparent-scrollbar"
|
||||
style={{
|
||||
borderBottom: '1px solid #E7EAEE',
|
||||
padding: '12px',
|
||||
}}
|
||||
>
|
||||
<XStack
|
||||
space={'$3'}
|
||||
justifyContent="space-between"
|
||||
|
Loading…
x
Reference in New Issue
Block a user