-
Notifications
You must be signed in to change notification settings - Fork 37
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
[OS-904] Start button not visible on small browsers #431
Conversation
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.
Some minor styling comments for consistency with the rest of the project.
views/partial/next-modal.jade
Outdated
@@ -1,6 +1,5 @@ | |||
.modal-overlay(ng-if='nextModal') | |||
.modal-overlay(ng-if='nextModal').flexcenterTop |
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.
.modal-overlay(ng-if='nextModal').flexcenterTop | |
.modal-overlay.flexcenterTop(ng-if='nextModal') |
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.
change it in flexcenter-top
styles/elements/modal.styl
Outdated
align-items: center | ||
} | ||
|
||
.flexcenterTop{ |
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.
The convention used in this project seems to be to use flexcenter-top
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.
done it
change class in flexcenter-top delete comments and extra space
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.
Looking good. Should be good to go once you clean up a couple of the missed :
s that you've introduced.
styles/views/splash.styl
Outdated
|
||
.logo-title | ||
illustration-fixed('layout/draw-logo') | ||
margin 30px auto 20px | ||
max-width: 288px | ||
width: 100% |
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.
Just a couple of missed :
s
styles/views/splash.styl
Outdated
@@ -1,9 +1,12 @@ | |||
.modal-inner.splash, .modal-inner.challenge-complete | |||
background color-bg | |||
width: 38% |
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.
And here
styles/elements/modal.styl
Outdated
@@ -37,6 +51,8 @@ | |||
width 30px | |||
line-height @width | |||
|
|||
width |
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.
By the way, what does this width
without a parameter do?
feat: start button visible on browser all the time, add responsive design, delete style issues |
This commit add responsive design to most of the popups in make art using flex-box. Before when we used to open make art through any browser the start button to access any challenge overflowed, preventing to be clicked. In order to allow users always to click the start button I applied responsive design with flex-box. I also went through some styling fix, deleting the unnecessary colon and semicolon in styl
fix responsive popouts