Skip to content

Commit

Permalink
feat: update CSS styles for setting inputs and media flow section layout
Browse files Browse the repository at this point in the history
  • Loading branch information
Viren070 committed Jan 18, 2025
1 parent 4b7daab commit 71bfa48
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 5 additions & 3 deletions packages/frontend/src/app/configure/page.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -53,14 +53,16 @@

.settingDescription {
flex: 1;
padding-right: 20px;
}

.settingInput {
display: flex;
flex-direction: column;
justify-content: flex-end;
width: 40%;
}
.settingInput select {
width: 100px;
height: 30px;
}

.slidersContainer {
Expand Down Expand Up @@ -155,7 +157,7 @@

.mediaFlowSection {
padding: 10px;
margin: 5px;
margin-top: 10px;
border-width: 1px;
border-style: solid;
border-radius: var(--borderRadius);
Expand Down
8 changes: 3 additions & 5 deletions packages/frontend/src/app/configure/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -957,8 +957,6 @@ export default function Configure() {
)
}
style={{
marginLeft: 'auto',
marginRight: '20px',
width: '100px',
height: '30px',
}}
Expand Down Expand Up @@ -1001,7 +999,7 @@ export default function Configure() {
This is useful for Vidi users.
</p>
</div>
<div className={styles.settingInput}>
<div className={styles.checkboxSettingInput}>
<input
type="checkbox"
checked={addonNameInDescription}
Expand All @@ -1020,7 +1018,7 @@ export default function Configure() {

<div className={styles.section}>
<div className={styles.setting}>
<div className={styles.settingDescription}>
<div className={styles.ettingDescription}>
<h2 style={{ padding: '5px' }}>Clean Results</h2>
<p style={{ padding: '5px' }}>
Attempt to remove duplicate results. For a given file with
Expand All @@ -1030,7 +1028,7 @@ export default function Configure() {
stream is selected at random.
</p>
</div>
<div className={styles.settingInput}>
<div className={styles.checkboxSettingInput}>
<input
type="checkbox"
checked={cleanResults}
Expand Down

0 comments on commit 71bfa48

Please sign in to comment.