diff --git a/class_registration_app/src/components/DashBoard.vue b/class_registration_app/src/components/DashBoard.vue index d7c01c3..677cffc 100644 --- a/class_registration_app/src/components/DashBoard.vue +++ b/class_registration_app/src/components/DashBoard.vue @@ -8,7 +8,7 @@
Valid. Please wait a moment.
Error. Please enter correct Username & password.
@@ -74,10 +76,10 @@ const tryLogin = async () => { } .form { position: absolute; - top: 50%; + top: 70%; left: 50%; transform: translate(-50%, -50%); - background: #fff; + background: transparent; width: 80%; height: 70%; @@ -91,16 +93,12 @@ const tryLogin = async () => { font-weight: 400; } input { - outline: none; - display: block; - width: 100%; - margin: 0 0 20px; - padding: 10px 15px; + + border: 1px solid #ccc; color: #ccc; font-family: "Roboto"; - box-sizing: border-box; - font-size: 14px; + font-size: 19px; font-weight: 400; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; @@ -124,6 +122,23 @@ const tryLogin = async () => { font-weight: 400; } + .inputBox{ + width:100%; + height:15%; + border: 1px solid #ccc; + color: black; + font-family: "Roboto"; + font-size: 25px; + font-weight: 400; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + transition: 0.2s linear; + &input:focus { + color: #333; + border: 1px solid #44c4e7; + } + } + .error, .valid{display:none;} diff --git a/class_registration_app/src/components/StartUp.vue b/class_registration_app/src/components/StartUp.vue index ba47484..16f145d 100644 --- a/class_registration_app/src/components/StartUp.vue +++ b/class_registration_app/src/components/StartUp.vue @@ -8,7 +8,6 @@ let loginType = ref(""); function openCloseLogin(type: string){ - isVisible.value = !isVisible.value; loginType.value = type; } @@ -20,7 +19,7 @@