Skip to content

Commit

Permalink
resize section header text
Browse files Browse the repository at this point in the history
  • Loading branch information
interim17 committed Dec 15, 2023
1 parent f849c3f commit d9ce369
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/containers/ConversionForm/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import { SetErrorAction } from "../../state/viewer/types";
import { UploadFile } from "antd/lib/upload";
import ConversionProcessingOverlay from "../../components/ConversionProcessingOverlay";
import ConversionFileErrorModal from "../../components/ConversionFileErrorModal";
import { ZoomIn as CancelIcon } from "../../components/Icons";
import { ZoomIn as CancelIcon, DownCaret } from "../../components/Icons";

interface ConversionProps {
setConversionEngine: ActionCreator<SetConversionEngineAction>;
Expand Down Expand Up @@ -127,11 +127,12 @@ const ConversionForm = ({
{" "}
Provide file information (required){" "}
</h3>
<h3 className={styles.selectTitle}>Simulation Engine</h3>
<h3 className={styles.selectTitle}>Simulation engine</h3>
<div className={styles.uploadContainer}>
<Select
className={styles.selectorBox}
id="select"
suffixIcon={DownCaret}
bordered={true}
defaultValue="Select"
options={selectOptions}
Expand Down
1 change: 1 addition & 0 deletions src/containers/ConversionForm/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
}

.select-title {
font-size: 1.08em;
margin-bottom: 0px;
}

Expand Down

0 comments on commit d9ce369

Please sign in to comment.