Skip to content

Commit

Permalink
design: 검색바와 클라이언트 필터링 위치 맞춘다 (#582)
Browse files Browse the repository at this point in the history
  • Loading branch information
feb-dain authored Aug 17, 2023
1 parent ae694ac commit 3e52a36
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
7 changes: 2 additions & 5 deletions frontend/src/components/ui/ClientStationFilters.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
import { css, styled } from 'styled-components';
import { styled } from 'styled-components';

import { useExternalState, useExternalValue } from '@utils/external-state';

import { navigationBarPanelStore } from '@stores/layout/navigationBarPanelStore';
import { clientStationFiltersStore } from '@stores/station-filters/clientStationFiltersStore';

import ButtonNext from '@common/ButtonNext';

import { NAVIGATOR_PANEL_WIDTH } from '@constants';
import { CHARGING_SPEED } from '@constants/chargers';

Expand Down Expand Up @@ -85,11 +83,10 @@ const ClientStationFilters = () => {

const Container = styled.div<{ left: number }>`
position: fixed;
top: 10px;
top: 14px;
left: ${(props) => props.left}rem;
z-index: 998;
padding: 10px;
//background-color: white;
display: flex;
gap: 10px;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const S = {
height: 100vh;
background: #fcfcfc;
outline: 1.5px solid #e1e4eb;
padding-top: 3.6rem;
padding-top: 2.4rem;
`,

Padding: styled.div`
Expand All @@ -38,7 +38,7 @@ const S = {
};

const labelText = css`
padding: 5.2rem 0 2.2rem;
padding: 4.2rem 0 2.2rem;
`;

export default StationSearchWindow;

0 comments on commit 3e52a36

Please sign in to comment.