bruno/renderer/pageComponents/Main/StyledWrapper.js

44 lines
661 B
JavaScript
Raw Normal View History

2021-12-03 20:37:38 +01:00
import styled from 'styled-components';
const Wrapper = styled.div`
display: flex;
width: 100%;
height: 100%;
2022-01-07 20:26:10 +01:00
min-height: 100vh;
2021-12-03 20:37:38 +01:00
section.main {
display: flex;
section.request-pane, section.response-pane {
}
}
.fw-600 {
font-weight: 600;
}
.react-tabs {
.react-tabs__tab-list {
padding-left: 1rem;
border-bottom: 1px solid #cfcfcf;
.react-tabs__tab--selected {
border-color: #cfcfcf;
}
}
}
.collection-filter {
input {
border: 1px solid rgb(211 211 211);
border-radius: 2px;
&:focus {
outline: none;
}
}
}
`;
export default Wrapper;