Skip to content

Commit

Permalink
fix: book event Planet-NULLCAST#797
Browse files Browse the repository at this point in the history
fixed
  • Loading branch information
jasurobo committed Jan 27, 2022
1 parent 0661c17 commit a2b24b2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 0 additions & 2 deletions component/layout/SectionVideos/SectionVideos.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ export default function SectionVideos() {
title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen
>
</iframe>
<button
Expand Down Expand Up @@ -123,7 +122,6 @@ export default function SectionVideos() {
title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"

>
</iframe>
<button
Expand Down
5 changes: 3 additions & 2 deletions component/popup/ModalBookGuestEvent.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -153,9 +153,9 @@ const ModalBookGuestEvent = ({
}
}}
/>
{validEmailName === "empty" && (
{!validEmail && (
<span className="flex items-center font-bold tracking-wide text-red-danger text-xs mt-1 ml-0">
please enter email address !
Please enter email address
</span>
)}
<Inputfield label="Confirm Email"
Expand All @@ -165,6 +165,7 @@ const ModalBookGuestEvent = ({
/>
<div className={styles.check}>
<input type="checkbox"
className="cursor-pointer"
id="updates"
name="updates"
value="updates"
Expand Down
3 changes: 3 additions & 0 deletions component/popup/ModalBookGuestEvent.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,11 @@
.checktext {
@apply text-sm font-normal ml-3;
font-family: "Open Sans";
cursor: pointer;
}
.check {
margin-top: 10px;
cursor: pointer;
}
.submit_btn {
@apply p-3 mt-10 text-white text-lg font-bold mx-auto self-center;
Expand All @@ -52,6 +54,7 @@
.login {
@apply cursor-pointer;
color: #0048d9;
margin-right: 5px;
}
.close {
@apply px-4 pt-2 absolute right-0 cursor-pointer;
Expand Down

0 comments on commit a2b24b2

Please sign in to comment.