|
<div class="mb-4 p-3 paragraph"> |
If you write "p-3" on this element, it will create an annoying effect when the user clicks the element, i.e. even though the user might be clicking the element, since it has a padding, the click won't have effect when it's clicked on the padding...
To avoid this I would do the following:
Remove p-3 from this element: <div class="mb-4 paragraph">
On the next line (element) apply the padding
|
<div class="paragraph-content"> |
<div class="paragraph-content p-3">
simple-blog/app/views/authors/posts/edit.html.erb
Line 68 in 72bb02e
If you write "p-3" on this element, it will create an annoying effect when the user clicks the element, i.e. even though the user might be clicking the element, since it has a padding, the click won't have effect when it's clicked on the padding...
To avoid this I would do the following:
simple-blog/app/views/authors/posts/edit.html.erb
Line 69 in 72bb02e