mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-19 14:20:31 +00:00
17 lines
288 B
TypeScript
17 lines
288 B
TypeScript
import { Box } from '@/components';
|
|
import styled from 'styled-components';
|
|
|
|
export const EntriesActionsBar = styled(Box)`
|
|
padding-bottom: 12px;
|
|
display: flex;
|
|
|
|
.bp4-form-group {
|
|
margin-bottom: 0;
|
|
|
|
label.bp4-label {
|
|
opacity: 0.6;
|
|
margin-right: 8px;
|
|
}
|
|
}
|
|
`;
|