Commit 4c76aa49 authored by Nikhil Doifode's avatar Nikhil Doifode
Browse files

CSS changes for frontend

parent 809fbc32
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -46,7 +46,7 @@ import {
  PAGE_CONFIGURE,
  PAGE_LOGIN,
  STATUS_SIGNED_IN,
  STATUS_SIGNED_OUT,
  STATUS_SIGNIN_NOT_SUPPORTED,
  PAGE_LOGIN_INDEX,
  PAGE_CONFIGURE_INDEX,
  PAGE_EXECUTE_INDEX,
@@ -63,7 +63,7 @@ const CorePodsLed = props => {
  const marginLeft = { marginLeft: -35 };
  return (
    <div>
      { props.signInStatus !== STATUS_SIGNED_OUT ?
      { props.signInStatus === STATUS_SIGNED_IN || props.signInStatus === STATUS_SIGNIN_NOT_SUPPORTED ?
        <>
          <a data-tip data-for='led'>
            <img
@@ -129,7 +129,8 @@ class MeepTopBar extends Component {
  }

  render() {
    let hideTabs = this.props.signInStatus === STATUS_SIGNED_OUT;
    let hideTabs = !(this.props.signInStatus === STATUS_SIGNED_IN ||
      this.props.signInStatus === STATUS_SIGNIN_NOT_SUPPORTED);
    return (
      <div>
        <Toolbar>
+5 −4
Original line number Diff line number Diff line
@@ -56,7 +56,7 @@ class LoginPageContainer extends Component {
  render() {
    let signedOut = this.props.signInStatus === STATUS_SIGNED_OUT;
    return (
      <div style={{ overflow: 'hidden', position: 'relative' }}>
      <div style={{position:'fixed'}}>
        <img
          src={BackgroundWP}
          style={styles.background}
@@ -184,7 +184,7 @@ const styles = {
    background: 'white'
  },
  logo: {
    height: 120,
    height: 'calc(100vw * 0.07)',
    width: '25%',
    marginLeft: '37.5%',
    marginTop: '1%'
@@ -196,9 +196,10 @@ const styles = {
    fontSize: '1.3rem'
  },
  footer: {
    marginTop: '8%',
    marginLeft: '15%',
    width: '70%'
    width: '70%',
    bottom: 15,
    position: 'fixed'
  },
  gridLine: {
    background: 'linear-gradient(#9d9d9d,#9d9d9d) center/2px 100% no-repeat',