Skip to content

Commit

Permalink
format: files
Browse files Browse the repository at this point in the history
  • Loading branch information
TobiTRy committed Dec 27, 2023
1 parent acf48e9 commit 21d1cdc
Show file tree
Hide file tree
Showing 9 changed files with 7 additions and 9 deletions.
1 change: 0 additions & 1 deletion src/Routes/DesignWrapper/Wrapper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import { styled, CSSProp } from 'styled-components';

import { TTheme } from '@/interface/TTheme';


export const DesignWrapper = styled.section`
display: flex;
flex-direction: column;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import { IAlignedInputLabel } from './TalignedInputLabel.model';

//the aligned label is only with align left or centerd {align?: string; active?: boolean}


export const AlignedInputLabel = styled(InputLabel)<IAlignedInputLabel>`
display: flex;
align-items: flex-end;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ import { TTheme } from '@/interface/TTheme';
// ---------- The input label wich hase some colors and an animation --------- //
// --------------------------------------------------------------------------- //


export const AnimatedInputLabel = styled(InputLabel)<IAnimatedInputLabel & { theme?: TTheme }>`
position: absolute;
padding: 12px 0 5px;
Expand Down
2 changes: 1 addition & 1 deletion src/components/atoms/FancyImage/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export { default as FancyImage } from './FancyImage';
export type { TFancyImage } from './FancyImage.model';
export type { TFancyImage } from './FancyImage.model';
1 change: 0 additions & 1 deletion src/components/atoms/RawSlider/RawSlider.style.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import { TLayer } from '@/interface/TLayer';
import { getBackgroundColor } from '@/design/designFunctions/colorCalculatorForComponent/colorCalculatorForComponent';
import { TTheme } from '@/interface/TTheme';


const DragableThumb = css<{ theme: TTheme }>`
height: 30px;
width: 30px;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export default function ChipDeleteButton(props: IXButtonProps & React.ButtonHTML
}

type TXButton = IStyledPrefixAndOmitter<IXButtonProps, 'children'>;

export const StyledXButton = styled(RawButton)<TXButton & { theme: TTheme }>`
border: none;
cursor: pointer;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default function ChipImg(props: IFancyChipImgProps) {
}

// Define the styled component for the wrapper image

export const WrapperImage = styled.div<{ theme: TTheme }>`
aspect-ratio: 1/1;
height: 100%;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import { styled } from 'styled-components';
import { boxShadow } from '@/design/designFunctions/shadows/shadows';
import { TTheme } from '@/interface/TTheme';


const SpeedDailButtonSize = 60;

export const Wrapper = styled.div`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,10 @@ function FancyContentCard(props: TFancyMiniContentCardProps) {

return (
<FancyBox
externalStyle={css`${generateCardStyle} ${externalStyle}`}
externalStyle={css`
${generateCardStyle};
${externalStyle};
`}
{...cardProps}
>
<FancyContentCard.FlexBox flexDirection="column">
Expand Down

0 comments on commit 21d1cdc

Please sign in to comment.