Skip to content

Commit dc598ed

Browse files
Sanji515sanketbansal
authored andcommitted
Modified contact us page to the current version of EvalAI (Cloud-CV#133)
* modified contact us page * minor change * minor responsive change
1 parent 3550f7f commit dc598ed

File tree

3 files changed

+52
-0
lines changed

3 files changed

+52
-0
lines changed

src/app/app.module.ts

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import { BrowserModule } from '@angular/platform-browser';
33
import {BrowserAnimationsModule} from '@angular/platform-browser/animations';
44
import { NgModule } from '@angular/core';
55
import { HttpClientModule } from '@angular/common/http';
6+
import { TextareaAutosizeModule } from 'ngx-textarea-autosize';
67
import {EmailValidator, FormsModule} from '@angular/forms';
78
import { FroalaEditorModule, FroalaViewModule } from 'angular-froala-wysiwyg';
89
import { TextareaAutosizeModule } from 'ngx-textarea-autosize';

src/app/components/utility/input/input.component.scss

+17
Original file line numberDiff line numberDiff line change
@@ -222,6 +222,23 @@
222222
}
223223

224224

225+
/* media queries for rocket container */
226+
@media only screen and (max-width: $screen-sm-md) {
227+
228+
.input-group {
229+
width: 100% !important;
230+
}
231+
232+
.input-group input {
233+
width: 100% !important;
234+
}
235+
236+
.input-group textarea {
237+
width: 100% !important;
238+
}
239+
}
240+
241+
225242
/* active state */
226243

227244
.input-field:focus~.input-bar:before,

src/styles/base.scss

+34
Original file line numberDiff line numberDiff line change
@@ -974,6 +974,40 @@ code {
974974
}
975975
}
976976

977+
.btn-waves-effect {
978+
position: relative;
979+
cursor: pointer;
980+
display: inline-block;
981+
overflow: hidden;
982+
user-select: none;
983+
-webkit-tap-highlight-color: transparent;
984+
vertical-align: middle;
985+
z-index: 1;
986+
will-change: opacity, transform;
987+
transition: .3s ease-out;
988+
}
989+
990+
.grad-btn {
991+
border-radius: 2px;
992+
}
993+
994+
.grad-btn-dark {
995+
background: #3c3e49;
996+
font-weight: 400;
997+
color: #fff;
998+
box-shadow: 0 4px 8px $gray-dark;
999+
}
1000+
1001+
.ev-btn-dark {
1002+
padding: 13px 33px 13px 33px;
1003+
border: none;
1004+
background: #252833;
1005+
}
1006+
1007+
.ev-btn-dark:hover {
1008+
background: #3c3e49;
1009+
}
1010+
9771011
.btn-fill {
9781012
padding: 10px 30px 10px 30px;
9791013
border: 1.5px solid white;

0 commit comments

Comments
 (0)