-
-
Notifications
You must be signed in to change notification settings - Fork 483
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update styles for new case contact form (#5557)
* Update border color of checkboxes and radio buttons Co-authored-by: Nate <[email protected]> * right-align form buttons Co-authored-by: Jade <[email protected]> * add title case * Style buttons on mobile view * Modify checkbox styling to be in separate SCSS file * display different title tags for mobile view * Fix tests * Modify font-size of text in TitleComponent --------- Co-authored-by: JP <[email protected]> Co-authored-by: compwron <[email protected]>
- Loading branch information
1 parent
4a045fc
commit c6b08da
Showing
7 changed files
with
47 additions
and
15 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
@use "../base/breakpoints.scss" as screen-sizes; | ||
|
||
.case-contacts-form { | ||
&-buttons { | ||
display: flex; | ||
justify-content: flex-end; | ||
gap: 10px; | ||
|
||
@media only screen and (max-width: screen-sizes.$mobile) { | ||
& > a, & > button { | ||
flex-grow: 1; | ||
} | ||
} | ||
} | ||
|
||
&-checkbox { | ||
border-color: #757575; | ||
} | ||
|
||
&-title { | ||
@media only screen and (max-width: screen-sizes.$mobile) { | ||
font-size: 28px; | ||
} | ||
} | ||
|
||
&-subtitle { | ||
@media only screen and (max-width: screen-sizes.$mobile) { | ||
font-size: 24px; | ||
} | ||
} | ||
} |
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