responsive page user-account & add-doctor & turns & add loading to all page panel & change design page dashboard

This commit is contained in:
Ehsan
2024-09-14 02:41:38 +03:30
parent d1f289bdca
commit 9d1c4aa299
60 changed files with 459 additions and 166 deletions
@@ -0,0 +1,35 @@
import Tabs from "@/app/component/Tabs"
function Tab({ value, listTab, handleChange }) {
return (
<Tabs
isSm={false}
style={{
'.MuiTabs-indicator': {
height: '2px',
borderRadius: '16px',
background: '#5559CE'
},
'& .MuiTabs-flexContainer': {
borderBottom: '2px solid #EFEFEF',
},
'& .mui-11pdt05-MuiButtonBase-root-MuiTab-root.Mui-selected': {
color: '#5559CE !important',
},
'& .MuiButtonBase-root': {
fontWeight: '400 !important'
},
'& .MuiButtonBase-root.Mui-selected': {
color: '#5559CE !important',
fontWeight: '700 !important',
transition: '0.3s all !important'
}
}}
value={value}
listTab={listTab}
handleChange={handleChange}
/>
)
}
export default Tab