index.less 1014 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. @import "../styles/mixins/index.less";
  2. @import "../styles/themes/index.less";
  3. .@{wux-prefix}-prompt {
  4. display: flex;
  5. height: 100%;
  6. align-items: center;
  7. justify-content: center;
  8. color: @prompt-color;
  9. background-color: @prompt-bg;
  10. &__bd {
  11. margin-top: 0;
  12. text-align: center;
  13. }
  14. &__icon {
  15. .square(@prompt-icon-size);
  16. }
  17. &__title {
  18. font-size: @font-size-lg;
  19. font-weight: bold;
  20. color: @heading-color;
  21. margin: 2px 0;
  22. }
  23. &__text {
  24. font-size: @font-size-sm;
  25. margin: 2px 0;
  26. }
  27. &__button {
  28. font-size: @font-size-sm;
  29. line-height: 2;
  30. margin: 4px auto;
  31. width: 100px;
  32. padding: 2px 0;
  33. border: @border-width-base @border-style-base @border-color-base;
  34. &::after {
  35. display: none;
  36. }
  37. &--hover {
  38. color: @text-color !important;
  39. background-color: @active-state-bg !important;
  40. }
  41. }
  42. }