Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. <div className="progressBarPosition">
  2. <span className="text-dark">File Upload</span>
  3. <div class="progress">
  4. <div class="progress-bar" style={{ width: `${this.props.percentage}%` }}>{this.props.percentage}%</div>
  5. </div>
  6. </div>
  7.  
  8. .progressBarPosition{
  9. padding: 24px 27px;
  10. color: #c5c1c1;
  11. position: fixed;
  12. top: 8px;
  13. left: 308px;
  14. right: 308px;
  15. height: 14%;
  16. border: 1px solid #9B9B9B;
  17. box-shadow: 0 0 24px 7px;
  18. border-radius: 3px;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement