After Width: | Height: | Size: 749 B |
After Width: | Height: | Size: 436 B |
After Width: | Height: | Size: 32 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 605 B |
After Width: | Height: | Size: 1.8 KiB |
After Width: | Height: | Size: 700 B |
@ -1,11 +1,26 @@ |
||||
import React, { Component } from "react"; |
||||
|
||||
import logo from "../../../assets/icons/logo.png"; |
||||
|
||||
import './index.scss'; |
||||
export default class Profile extends Component { |
||||
render() { |
||||
return ( |
||||
<> |
||||
{ |
||||
window.innerWidth > 1000 ? |
||||
<div className="auth-profile d-flex"> |
||||
|
||||
</div> |
||||
</div> : null |
||||
} |
||||
{ |
||||
window.innerWidth < 1000 ? |
||||
<div className="mobile-auth-profile d-flex flex-column"> |
||||
<img src={logo} alt='دانوین' /> |
||||
</div> : null |
||||
} |
||||
</> |
||||
|
||||
); |
||||
} |
||||
} |
||||
|
@ -0,0 +1,7 @@ |
||||
.mobile-auth-profile{ |
||||
width : 100%; |
||||
height : 100%; |
||||
overflow-y: scroll; |
||||
position: relative; |
||||
padding: 15px; |
||||
} |