-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
style to disability and services pages #137
Conversation
public/js/public.js
Outdated
// convert this to actual array from 'array-like' object | ||
var filterButtonsArray = [].slice.call(filterButtons) | ||
var buttons = filterButtons.querySelectorAll('button') | ||
console.log(buttons) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove console log
public/assets/icons/BACK_btn.svg
Outdated
@@ -3,7 +3,7 @@ | |||
<!-- Generator: Sketch 44 (41411) - http://www.bohemiancoding.com/sketch --> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
delete this file now?
views/services.hbs
Outdated
<section class=""> | ||
<div class=""> | ||
<a href="/" aria-label={{text.back}}><img src="./assets/icons/BACK_btn.svg" ></a> | ||
<section class="white fixed top-0 mb3"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can we have the "w-100 tc" classes like we do in the home.hbs to centre everything?
I've done it and it works fine, except it means the arrow is in the centre. This can be fixed by using float left or right or whatever, but then it's the same for arabic or english, so one of them is in the wrong place always 😢
I think probably its better to have the arrow in the centre and make the site as a whole look better than to have the arrow to the right. we can always fix the position using a helper or something.
views/services.hbs
Outdated
<a href="/" aria-label={{text.back}}><img src="./assets/icons/BACK_btn.svg" ></a> | ||
<section class="white fixed top-0 mb3"> | ||
<div class="mt4 pt2 f3 mh2"> | ||
<a href="/" class="near-white" aria-label={{text.back}}><i aria-hidden="true" class="{{{chooseBack dir}}}"></i></a> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe add "dim" class so it dims when you hover over it
related to #101 #102 #142