-
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.
infoForm component and important facts
- Loading branch information
1 parent
656851c
commit 892496c
Showing
9 changed files
with
221 additions
and
52 deletions.
There are no files selected for viewing
Binary file not shown.
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -1,13 +1,47 @@ | ||
.formSectionContainer { | ||
display: flex; | ||
flex-direction: column; | ||
display: grid; | ||
grid-template-columns: repeat(2, 1fr); | ||
column-gap: 4rem; | ||
} | ||
|
||
h3 { | ||
font-size: 18px; | ||
font-size: 18px !important; | ||
} | ||
|
||
.inputBox { | ||
margin-top: 1rem; | ||
} | ||
|
||
.inputTitle { | ||
font-size: 12px; | ||
color: #6c6c6c; | ||
} | ||
|
||
.inputText { | ||
width: 100%; | ||
padding: 8px 48px 8px 16px; | ||
margin-top: 4px; | ||
font-size: 16px; | ||
line-height: 24px; | ||
color: var(--color-accent); | ||
font: var(--font-body); | ||
border: 1px solid var(--color-shadow); | ||
border-radius: 5px; | ||
} | ||
|
||
select.inputText { | ||
/* Arrow */ | ||
appearance: none; | ||
background-image: url("../assets/dropArrow.svg"); | ||
background-repeat: no-repeat; | ||
background-position: right top 50%; | ||
cursor: pointer; | ||
} | ||
.selectInput { | ||
border: 0; | ||
vertical-align: middle; | ||
background: transparent; | ||
-webkit-appearance: none; | ||
appearance: none; | ||
padding-left: 5px; | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
import { Accordion } from "./Accordion.tsx"; | ||
import { Button } from "./Button.tsx"; | ||
import { FormSection } from "./FormSection.tsx"; | ||
import { FAQs } from "./FAQs.tsx"; | ||
import { FormSection } from "./FormSection.tsx"; | ||
import { InfoForm } from "./InfoForm.tsx"; | ||
import { NavBar } from "./NavBar.tsx"; | ||
import { Page } from "./Page.tsx"; | ||
import { Pathway } from "./Pathway.tsx"; | ||
|
||
export { Page, Button, FormSection, NavBar, Accordion, Pathway, FAQs }; | ||
export { Page, Button, FormSection, NavBar, Accordion, Pathway, FAQs, InfoForm }; |