-
Notifications
You must be signed in to change notification settings - Fork 57
[724] Set minimum height for Reservations table #1349
Conversation
@@ -3,3 +3,7 @@ | |||
border-radius: 5px; | |||
margin-bottom: 20px; | |||
} | |||
|
|||
#reservations-list { | |||
height: 10em; |
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.
is this better than min-height
for this use case?
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.
Little-known fact - table
s don't have a min-height
property; way to not read the issue thread 😛.
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.
lmao thanks, I was looking at PRs I didn't see the issue xD
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.
Didn't you teach me that the first step of code review is to read the relevant issue? Maybe I just made it up 😛
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.
depends on the level of code review ^_~
- shallow - cursory-glance feedback for obvious little things
- read-only - for style/architecture
- clone-and-manually-test - needed sometimes
Feedback of type 1 from busy people (Adam lol) has helped me more often than you'd think :)
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.
looks fine to me |
[724] Set minimum height for Reservations table
Resolves #724