mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-29 16:14:42 +00:00
12 lines
214 B
TypeScript
12 lines
214 B
TypeScript
|
|
import styled from 'styled-components';
|
||
|
|
|
||
|
|
export const ButtonContainer = styled.div`
|
||
|
|
&&& {
|
||
|
|
display: flex;
|
||
|
|
justify-content: space-between;
|
||
|
|
align-items: center;
|
||
|
|
margin-top: 1rem;
|
||
|
|
margin-bottom: 1rem;
|
||
|
|
}
|
||
|
|
`;
|