mirror of
https://github.com/usebruno/bruno.git
synced 2026-07-03 01:18:32 +00:00
* feat: theme + ux overhaul * chore: moved @opencollection/types at root of monorepo * chore: fixed review comments * chore: addressed review comments * chore: fix playwright tests --------- Co-authored-by: Bijin A B <bijin@usebruno.com>
38 lines
697 B
JavaScript
38 lines
697 B
JavaScript
import styled from 'styled-components';
|
|
|
|
const StyledWrapper = styled.div`
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow: hidden;
|
|
background-color: ${(props) => props.theme.bg};
|
|
|
|
.empty-state {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
padding-top: 10%;
|
|
flex: 1;
|
|
color: ${(props) => props.theme.colors.text.muted};
|
|
|
|
svg {
|
|
opacity: 0.3;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.title {
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
margin-bottom: 12px;
|
|
color: ${(props) => props.theme.colors.text.muted};
|
|
}
|
|
|
|
.actions {
|
|
display: flex;
|
|
gap: 8px;
|
|
}
|
|
}
|
|
`;
|
|
|
|
export default StyledWrapper;
|