LoginSignup
1
0

More than 1 year has passed since last update.

【Rails】フラッシュメッセージの空白を消したい時

Last updated at Posted at 2022-07-13

フラッシュメッセージの余白を消したい!

めちゃくちゃ邪魔↓
スクリーンショット 2022-07-13 17.38.06.png

application.html
<% if notice %>
 <p class="notice"><%= notice %></p>
<% end %>
<% if alert %>
 <p class="alert"><%= alert %></p>
<% end %>

if文でサクッと消しちゃいます。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0