Skip to content

Commit

Permalink
Merge pull request #71 from rairprotocol/68-default-color-scheme-of-v…
Browse files Browse the repository at this point in the history
…ideo-upload-section-on-demo-upload-page

Style fix
  • Loading branch information
sarora180673 authored Jun 21, 2024
2 parents 4d4e0dc + 235c1db commit 85d9313
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -316,6 +316,7 @@ const MediaListBox: React.FC<IMediaListBox> = ({
const [categoryOptions, setCategoryOptions] = useState<Options[]>([]);

const {
primaryColor,
secondaryColor,
textColor,
primaryButtonColor,
Expand Down Expand Up @@ -523,7 +524,10 @@ const MediaListBox: React.FC<IMediaListBox> = ({
<div
className="row w-100"
style={{
backgroundColor: secondaryColor,
backgroundColor: primaryColor,
borderWidth: '2px',
borderStyle: 'solid',
borderColor: secondaryColor,
color: textColor,
borderRadius: '15px',
marginTop: '20px'
Expand Down

0 comments on commit 85d9313

Please sign in to comment.