opened tabs widget

This commit is contained in:
Jan Prochazka
2020-04-13 13:49:00 +02:00
parent 0e395f14ad
commit abb3f6e09c
6 changed files with 112 additions and 44 deletions

View File

@@ -0,0 +1,44 @@
import styled from 'styled-components';
import theme from '../theme';
export const SearchBoxWrapper = styled.div`
display: flex;
margin-bottom: 5px;
`;
export const MainContainer = styled.div`
position: relative;
display: flex;
flex-flow: column wrap;
flex: 1;
flex-direction: column;
user-select: none;
`;
export const OuterContainer = styled.div`
flex: 1 1 0;
overflow: hidden;
width: ${theme.leftPanel.width}px;
position: relative;
flex-direction: column;
display: flex;
`;
export const InnerContainer = styled.div`
flex: 1 1;
overflow: scroll;
width: ${theme.leftPanel.width}px;
`;
export const Input = styled.input`
flex: 1;
min-width: 90px;
`;
export const WidgetTitle = styled.div`
padding: 5px;
font-weight: bold;
text-transform: uppercase;
background-color: gray;
// background-color: #CEC;
`;