[Chore] Config Page: Adjust design a bit.

This commit is contained in:
Sakamoto Shiina
2024-12-06 11:09:09 +09:00
parent f4aea309cf
commit a55e1dd59f
3 changed files with 1 additions and 6 deletions

View File

@@ -5,6 +5,7 @@
gap: 0.4rem; gap: 0.4rem;
position: relative; position: relative;
flex-shrink: 0; flex-shrink: 0;
flex-wrap: wrap;
&.column { &.column {
flex-direction: column; flex-direction: column;
} }

View File

@@ -7,7 +7,6 @@ export const Slider = (props) => {
return ( return (
<div className={clsx(styles.container, props.className)}> <div className={clsx(styles.container, props.className)}>
<MUI_Slider <MUI_Slider
className={styles.range_slider}
aria-label="Default" aria-label="Default"
valueLabelDisplay="auto" valueLabelDisplay="auto"
value={props.variable} value={props.variable}

View File

@@ -5,8 +5,3 @@
justify-content: center; justify-content: center;
width: 100%; width: 100%;
} }
.range_slider {
height: 200px;
padding: 10px 0;
}