fix(settings): adjust custom domain table cell styling (#11060)
Set table cell display to block to ensure proper rendering and alignment. This resolves layout issues caused by the previous styling.
This commit is contained in:
@ -18,7 +18,7 @@ const StyledTable = styled(Table)`
|
|||||||
|
|
||||||
const StyledTableCell = styled(TableCell)`
|
const StyledTableCell = styled(TableCell)`
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
display: block;
|
||||||
padding: 0 ${({ theme }) => theme.spacing(3)} 0 0;
|
padding: 0 ${({ theme }) => theme.spacing(3)} 0 0;
|
||||||
|
|
||||||
&:first-child {
|
&:first-child {
|
||||||
|
|||||||
Reference in New Issue
Block a user