forked from pollend/CSAFE-Chapman-University
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove vertical scrollbar on ride request page
Remove Bulma Closes #11
- Loading branch information
1 parent
cfc50a8
commit b36654b
Showing
3 changed files
with
35 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
@import 'csafe/css-v2/ride-request.scss'; | ||
@import 'mapbox/mapbox-gl.css'; | ||
@import '~bulma/sass/utilities/initial-variables.sass'; | ||
@import '~bulma/sass/utilities/functions.sass'; | ||
// @import '~bulma/sass/utilities/initial-variables.sass'; | ||
// @import '~bulma/sass/utilities/functions.sass'; | ||
@import 'uxsoc/styles/variables/variables'; | ||
@import '~bulma/bulma.sass'; | ||
// @import '~bulma/bulma.sass'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,26 @@ | ||
.ride-input { | ||
height: 34vh; | ||
.ride-container { | ||
height: 100vh; | ||
width: 100vw; | ||
} | ||
|
||
.map-container { | ||
height: 66%; | ||
width: 100%; | ||
} | ||
|
||
.ride-input { | ||
height: 34%; | ||
width: 100%; | ||
background-color: #eceff5; | ||
} | ||
|
||
.logout-btn { | ||
position: fixed; | ||
top: 0; | ||
right: 0; | ||
} | ||
|
||
body { | ||
margin: 0; | ||
padding: 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
div Ride Request Page | ||
= react_component("RiderMap") | ||
div.ride-input | ||
.field | ||
.control | ||
input.input type="text" placeholder="Enter pickup here" | ||
input.input type="text" placeholder="Enter destination here" | ||
= link_to('Logout', destroy_user_session_path, method: :delete) | ||
.ride-container | ||
.map-container | ||
= react_component("RiderMap") | ||
.ride-input | ||
.field | ||
.control | ||
input.input type="text" placeholder="Enter pickup here" | ||
input.input type="text" placeholder="Enter destination here" | ||
= link_to('Logout', destroy_user_session_path, method: :delete, class: "logout-btn") |