diff --git a/themes/learning-management-system/learning-management-theme/src/component/contactUs/index.js b/themes/learning-management-system/learning-management-theme/src/component/contactUs/index.js index 9a278730..a393e882 100644 --- a/themes/learning-management-system/learning-management-theme/src/component/contactUs/index.js +++ b/themes/learning-management-system/learning-management-theme/src/component/contactUs/index.js @@ -23,66 +23,78 @@ const ContactUs = () => { classes={{ root: classes.wrapper }} > - + - {children} + {children} ) } return ( - Feel free to Contact Us! + Feel free to Contact Us! - + Please contact us using the information below. For additional informations on UOM Higher Education Institute - - - + + + + + - - No: 07/A, - - - Galle Rd + + Visit us - - Galle + + No: 07/A,

Galle Rd , Galle
- - + + + - + + Text us + + 091-5623123 - - + + + - + + Call us + + 076-3459011 - - + + + - + + Mail us + + info@uom.io + ) diff --git a/themes/learning-management-system/learning-management-theme/src/component/contactUs/styles.js b/themes/learning-management-system/learning-management-theme/src/component/contactUs/styles.js index 45434f1d..69104554 100644 --- a/themes/learning-management-system/learning-management-theme/src/component/contactUs/styles.js +++ b/themes/learning-management-system/learning-management-theme/src/component/contactUs/styles.js @@ -14,8 +14,37 @@ const Styles = makeStyles(theme => ({ boxShadow: theme.shadows[5], border: "1px solid #000", }, + head:{ + [theme.breakpoints.down("sm")]:{ + marginLeft:"0", + width:"60vw", + }, + marginLeft:"50px", + width:"80vw", + }, + heading:{ + [theme.breakpoints.down("sm")]:{ + marginLeft:"50px", + width:"50vw", + color:"black", + fontSize:"30px" + }, + marginLeft:"410px", + width:"80vw", + color:"black", + fontSize:"30px" + }, space: { + [theme.breakpoints.down("sm")]: { + display:"flex", + flexDirection:"column", + }, marginTop: "20px", + marginBottom:"40px", + marginLeft:"50px", + width:"max-content", + gap:"20px", + alignItems:"center" }, wrapper: { width: "40%", @@ -29,6 +58,23 @@ const Styles = makeStyles(theme => ({ marginTop: "0px", }, }, + pad:{ + [theme.breakpoints.down("sm")]: { + height: "200px", + }, + marginLeft:"20px", + width:"250px", + justifyContent:"center", + alignItems:"center", + height:"300px" + }, + + textGrid:{ + width:"150px", + textAlign:"center", + justifyContent:"center", + fontFamily:"sans-serif" + } })) export default Styles