-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5656b5c
commit e139a8b
Showing
16 changed files
with
289 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
src/components/Organisms/DevicesResourcesModal/DevicesResourcesModal.styles.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import { css } from '@emotion/react' | ||
import { getThemeColor, ThemeType } from '../../Atomic/_theme' | ||
|
||
export const flexLine = css` | ||
display: flex; | ||
align-items: center; | ||
justify-content: space-between; | ||
flex-wrap: wrap; | ||
` | ||
|
||
export const contentHeadline = (theme: ThemeType) => css` | ||
background: ${getThemeColor(theme, `Modal.content.background`)}; | ||
position: relative; | ||
z-index: 2; | ||
` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
52 changes: 52 additions & 0 deletions
52
...ents/Organisms/GeneratedResourceForm/FormGenerator/components/FormGeneratorLine.styles.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
import { css } from '@emotion/react' | ||
|
||
export const wrapper = css` | ||
position: relative; | ||
` | ||
|
||
export const line = css` | ||
display: flex; | ||
align-items: center; | ||
justify-content: space-between; | ||
padding: 8px 0; | ||
` | ||
|
||
export const lineImg = css` | ||
position: absolute; | ||
bottom: -15px; | ||
left: -20px; | ||
background: #f2f3f5; | ||
height: calc(100% + 30px); | ||
width: 2px; | ||
&:after { | ||
content: ''; | ||
position: absolute; | ||
width: 14px; | ||
height: 10px; | ||
bottom: 50%; | ||
left: 0; | ||
border-left: 2px solid #f2f3f5; | ||
border-bottom: 2px solid #f2f3f5; | ||
border-bottom-left-radius: 20px; | ||
} | ||
` | ||
|
||
export const isLast = css` | ||
height: calc(50% + 20px) !important; | ||
bottom: calc(50% + 8px) !important; | ||
&:after { | ||
bottom: -8px !important; | ||
} | ||
` | ||
|
||
export const noBefore = css` | ||
&:after { | ||
display: none; | ||
} | ||
` | ||
|
||
export const lastGroup = css` | ||
height: 0 !important; | ||
` |
Oops, something went wrong.