-
Notifications
You must be signed in to change notification settings - Fork 35
BCN Web Dev 04/2019 - Dino #10
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
base: master
Are you sure you want to change the base?
Conversation
max-width: 100%; | ||
} | ||
|
||
@media (max-width: 768px) { |
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.
You don't need to put all your code inside this @Mediaquery. Just specific things that only are different for that screen size. Please if you have questions regarding how to use media queries let us know.
.ul-parent { | ||
/* margin-right: 10px; */ | ||
display: flex; | ||
flex-direction: row; |
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 default value for flex-direction is already row.
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | ||
<script src="https://use.fontawesome.com/1fb0eb3889.js"></script> | ||
<link href="https://fonts.googleapis.com/css?family=Heebo:400,700" rel="stylesheet"> | ||
<!-- <link rel="stylesheet" type="text/css" href="./stylesheets/reset.css"> --> |
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.
you commented out the reset file so the reset isn't taking place.
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.
Good job, though you reused a lot of properties in different selectors, the css could be refactored to be less repetitive.
No description provided.