fix responsive all pages & change style page list blog and blog item & add date picker
This commit is contained in:
@@ -9,7 +9,7 @@ import Doctors from './components/doctors';
|
||||
|
||||
function ClinicPage({ data, doctors }) {
|
||||
|
||||
const [value, setValue] = useState(1);
|
||||
const [value, setValue] = useState(0);
|
||||
const handleChange = (event, newValue) => setValue(newValue);
|
||||
|
||||
const Components = [
|
||||
@@ -19,12 +19,12 @@ function ClinicPage({ data, doctors }) {
|
||||
];
|
||||
|
||||
return (
|
||||
<div className="pt-[136px] mt-[40px] padding-responsive">
|
||||
<div className="pt-[40px] sm:pt-[70px] md:pt-[100px] lg:pt-[136px] mt-[40px] padding-responsive">
|
||||
<Tabs
|
||||
value={value}
|
||||
handleChange={handleChange}
|
||||
/>
|
||||
<div className='mt-[32px]'>
|
||||
<div className='mt-[24px] sm:mt-[27px] md:mt-[30px] lg:mt-[32px]'>
|
||||
{Components[value]}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user