Skip to content

Commit

Permalink
fix: outline css
Browse files Browse the repository at this point in the history
  • Loading branch information
ameeshagireesh committed Sep 3, 2021
1 parent b4241c1 commit ce26f12
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/pages/Eventform/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import eventFormSchema from "../../validation/eventform.jsx";
import { toast, ToastContainer } from "react-toastify";
import "react-toastify/dist/ReactToastify.css";
import { postEvent } from "../../api/Request";

const EventForm = () => {
const [start, setStart] = useState(new Date());
const [end, setEndDate] = useState(new Date());
Expand Down Expand Up @@ -313,4 +314,4 @@ const EventForm = () => {
);
};

export default EventForm;
export default EventForm;
5 changes: 4 additions & 1 deletion src/pages/Eventform/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,10 @@ select {
transition: 0.35s ease-in-out;
transition: all 0.35s ease-in-out;
color: #FFFFFF !important;
outline: none;
}


/* p {
inline-size: 300px;
overflow-wrap: break-word;
Expand All @@ -93,6 +95,7 @@ select {
transition: all 0.35s ease-in-out;
line-height: 1.4;
color: #FFFFFF;
outline: none;
}

#scroll-bar {
Expand Down Expand Up @@ -183,4 +186,4 @@ select {
font-size: 15px;
cursor: pointer;
color: white;
}
}

0 comments on commit ce26f12

Please sign in to comment.