diff --git a/src/ui/atoms/table/index.tsx b/src/ui/atoms/table/index.tsx index 5098b183..11081962 100644 --- a/src/ui/atoms/table/index.tsx +++ b/src/ui/atoms/table/index.tsx @@ -28,6 +28,8 @@ export const Tbody = styled.tbody` `; export const Th = styled.th` + display: flex; + align-items: center; box-sizing: border-box; max-width: var(--local-cell-max-width); padding: var(--local-vertical) var(--local-horizontal); @@ -38,6 +40,7 @@ export const Th = styled.th` `; export const Td = styled.td` + display: flex; box-sizing: border-box; max-width: var(--local-cell-max-width); padding: var(--local-vertical) var(--local-horizontal);