index.less 452 B

12345678910111213141516171819202122232425
  1. @import "~ant-design-vue/es/style/themes/default";
  2. .global-search-wrapper {
  3. position: fixed;
  4. top: 0;
  5. left: 0;
  6. right: 0;
  7. bottom: 0;
  8. z-index: @zindex-modal-mask;
  9. background: @modal-mask-bg;
  10. .global-search-box {
  11. position: absolute;
  12. top: 20%;
  13. left: 50%;
  14. width: 450px;
  15. transform: translate(-50%, -50%);
  16. .global-search-tips {
  17. color: @white;
  18. font-size: @font-size-lg;
  19. text-align: right;
  20. }
  21. }
  22. }