Skip to content

Commit 75ed32f

Browse files
committed
fix: remove deprecated props
1 parent 11f92a2 commit 75ed32f

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/views/pages/page404/Page404.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ const Page404 = () => {
2828
<CInputGroupText>
2929
<CIcon icon={cilMagnifyingGlass} />
3030
</CInputGroupText>
31-
<CFormInput size="16" type="text" placeholder="What are you looking for?" />
31+
<CFormInput type="text" placeholder="What are you looking for?" />
3232
<CButton color="info">Search</CButton>
3333
</CInputGroup>
3434
</CCol>

src/views/pages/page500/Page500.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ const Page500 = () => {
2828
<CInputGroupText>
2929
<CIcon icon={cilMagnifyingGlass} />
3030
</CInputGroupText>
31-
<CFormInput size="16" type="text" placeholder="What are you looking for?" />
31+
<CFormInput type="text" placeholder="What are you looking for?" />
3232
<CButton color="info">Search</CButton>
3333
</CInputGroup>
3434
</CCol>

src/views/pages/register/Register.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@ const Register = () => {
5555
autoComplete="new-password"
5656
/>
5757
</CInputGroup>
58-
<CButton color="success" block>
59-
Create Account
60-
</CButton>
58+
<div className="d-grid">
59+
<CButton color="success">Create Account</CButton>
60+
</div>
6161
</CForm>
6262
</CCardBody>
6363
</CCard>

0 commit comments

Comments
 (0)