Skip to content

Commit

Permalink
style
Browse files Browse the repository at this point in the history
  • Loading branch information
barbalex committed May 14, 2024
1 parent 39bbda4 commit ed3cf58
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
1 change: 1 addition & 0 deletions src/components/AppBar/EkfBar/User/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ const FieldsContainer = styled.div`
padding: 24px;
padding-top: 0;
overflow: auto !important;
scrollbar-width: thin;
height: 100%;
`
const StyledInput = styled(Input)`
Expand Down
7 changes: 4 additions & 3 deletions src/components/Docs/Sidebar/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,16 @@ import { Link, useLocation } from 'react-router-dom'
import { observer } from 'mobx-react-lite'

import storeContext from '../../../storeContext'
import MenuItems from './MenuItems'
import Filter from './Filter'
import IntoViewScroller from './IntoViewScroller'
import MenuItems from './MenuItems.jsx'
import Filter from './Filter.jsx'
import IntoViewScroller from './IntoViewScroller.jsx'

const Menu = styled.div`
width: 25%;
min-width: 320px;
height: 100%;
overflow-y: auto;
scrollbar-width: thin;
padding: 25px 0;
border-right: 1px solid rgba(0, 0, 0, 0.12);
box-sizing: border-box;
Expand Down
7 changes: 4 additions & 3 deletions src/components/Docs/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ import styled from '@emotion/styled'
import { Outlet } from 'react-router-dom'
import SimpleBar from 'simplebar-react'

import Sidebar from './Sidebar'
import ErrorBoundary from '../shared/ErrorBoundary'
import Spinner from '../shared/Spinner'
import Sidebar from './Sidebar/index.jsx'
import ErrorBoundary from '../shared/ErrorBoundary.jsx'
import Spinner from '../shared/Spinner.jsx'

const Container = styled.div`
height: 100%;
Expand All @@ -21,6 +21,7 @@ const Doku = styled.div`
width: 100%;
padding: 25px;
overflow-y: auto;
scrollbar-width: thin;
box-sizing: border-box;
ul,
ol {
Expand Down
1 change: 1 addition & 0 deletions src/components/Projekte/Daten/TpopmassnFilter/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ const Container = styled.div`
`
const FormScrollContainer = styled.div`
overflow-y: auto;
scrollbar-width: thin;
`
const ColumnContainer = styled.div`
padding: 10px;
Expand Down

0 comments on commit ed3cf58

Please sign in to comment.