画面全体に背景を設定したいのですが、なぜか高さがboxshadowで指定した500px分しか適用されていません。真ん中部分にだけ紫色の背景が適用され、上、下の部分が白くなってしまいます。原因わかる方いませんか?
新規登録時のビュー
.newreg .newregstr %h2.sign-up aaaaa %h5 新しいアカウント作成 = form_for(resource, as: resource_name, url: registration_path(resource_name)) do |f| = render "devise/shared/error_messages", resource: resource .field -# = f.label :email %br/ = f.email_field :email, autofocus: true, autocomplete: "email",placeholder: "メールアドレス" .field -# = f.label :password - if @minimum_password_length %em (#{@minimum_password_length} characters minimum) %br/ = f.password_field :password, autocomplete: "new-password",placeholder: "パスワード" .field -# = f.label :password_confirmation %br/ = f.password_field :password_confirmation, autocomplete: "new-password",placeholder: "パスワード確認" .actions = f.submit "Sign up" = render "devise/shared/links"
新規登録時のcss
.newreg{ background-color: #F3EBF6; height: 100%; width: 100%; // background-image: url("back.jpeg"); background-position: center; // position: relative; .newregstr{ text-align: center; margin: 100px auto 0; font-size: 16px; // position: absolute; // background-color: #FFFFFF; width: 500px; height: 500px; margin: 7em auto; border-radius: 1.5em; box-shadow: 0px 11px 35px 2px rgba(0, 0, 0, 0.14); // background-image: url("back.jpeg"); .sign-up{ padding-top: 40px; // color: #8C55AA; color: white; font-family: 'Ubuntu', sans-serif; font-weight: bold; font-size: 40px; // transform: rotate( 5deg ); font-family: 'Homemade Apple', cursive; .field{ padding-top: 10px; #user_email{ line-height: 40px; } #user_password{ line-height: 40px; } } } } } .new_session{ text-decoration: none; line-height: 40px; border: solid 1px white; padding: 0 55px; margin-top: 20px; font-size: 20px; color: black; background-color: white; }
原因特定できないので探索中です。
追記
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2020/03/15 11:49
2020/03/15 23:33 編集