LockActionItem.less 453 B

12345678910111213141516171819202122232425262728293031
  1. .lock-modal {
  2. &__entry {
  3. position: relative;
  4. // width: 500px;
  5. height: 240px;
  6. padding: 130px 30px 60px 30px;
  7. background: #fff;
  8. border-radius: 10px;
  9. }
  10. &__header {
  11. position: absolute;
  12. top: 0;
  13. left: calc(50% - 45px);
  14. width: auto;
  15. text-align: center;
  16. &-img {
  17. width: 70px;
  18. border-radius: 50%;
  19. }
  20. &-name {
  21. margin-top: 5px;
  22. }
  23. }
  24. &__footer {
  25. text-align: center;
  26. }
  27. }