diff --git a/packages/webapp/src/containers/Sales/Invoices/InvoiceSendMailDrawer/InvoiceSendMailFields.tsx b/packages/webapp/src/containers/Sales/Invoices/InvoiceSendMailDrawer/InvoiceSendMailFields.tsx index 3f4021ea9..f83f56244 100644 --- a/packages/webapp/src/containers/Sales/Invoices/InvoiceSendMailDrawer/InvoiceSendMailFields.tsx +++ b/packages/webapp/src/containers/Sales/Invoices/InvoiceSendMailDrawer/InvoiceSendMailFields.tsx @@ -32,6 +32,18 @@ const createNewItemRenderer = (query, active, handleClick) => { // Create new item from the given query string. const createNewItemFromQuery = (name) => ({ name }); +const styleEmailButton = css` + &.bp4-button.bp4-small { + width: auto; + margin: 0; + min-height: 26px; + line-height: 26px; + padding-top: 0; + padding-bottom: 0; + font-size: 12px; + } +`; + export function InvoiceSendMailFields() { const [showCCField, setShowCCField] = useState(false); const [showBccField, setShowBccField] = useState(false); @@ -83,12 +95,12 @@ export function InvoiceSendMailFields() { spacing={0} borderRight="1px solid #dcdcdd" > - + - :not(:first-of-type) .bp4-input{ + :not(:first-of-type) .bp4-input { border-top-color: transparent; border-top-right-radius: 0; border-top-left-radius: 0; @@ -97,49 +109,41 @@ export function InvoiceSendMailFields() { border-bottom-left-radius: 0; border-bottom-right-radius: 0; } - `}> + `} + > - CC - + - BCC - + ), }} @@ -154,7 +158,7 @@ export function InvoiceSendMailFields() {