From 4b9e09673efe2031ec0fce0596548fcfe3d6e1cd Mon Sep 17 00:00:00 2001 From: Luc Date: Mon, 1 Nov 2021 09:43:20 +0100 Subject: [PATCH] add style for choosing remotefs add wrapping to prepare for dual browser --- src/components/fileBrowser.styled.js | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/src/components/fileBrowser.styled.js b/src/components/fileBrowser.styled.js index 75a7004..6326c26 100644 --- a/src/components/fileBrowser.styled.js +++ b/src/components/fileBrowser.styled.js @@ -20,4 +20,24 @@ export const Input = styled.input` export const Label = styled.label` margin-right: .7vw; +` + +export const FileBrowsersContainer = styled.div` + display: flex; + gap: 0 1rem; + height: 100%; +` + +export const FileBrowserWrapper = styled.div` + display: flex; + flex-direction: column; + gap: .5rem 0; + width: 100%; + height: 100%; +` + +export const FileBrowserRemotes = styled.div` + display: flex; + gap: .5rem; + justify-content: flex-start; ` \ No newline at end of file