mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-17 23:47:12 +00:00
16 lines
279 B
TypeScript
16 lines
279 B
TypeScript
|
|
import styled from 'styled-components';
|
||
|
|
|
||
|
|
export const Container = styled.div`
|
||
|
|
height: 15%;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: flex-end;
|
||
|
|
display: flex;
|
||
|
|
gap: 1rem;
|
||
|
|
padding-right: 1rem;
|
||
|
|
padding-left: 1rem;
|
||
|
|
padding-top: 0.5rem;
|
||
|
|
position: absolute;
|
||
|
|
top: 0;
|
||
|
|
right: 0;
|
||
|
|
`;
|