style.module.css 377 B

123456789101112131415161718192021
  1. .promptTitle {
  2. width: 72px;
  3. height: 31px;
  4. background: url(./images/prompt.svg) no-repeat 0 0;
  5. background-size: contain;
  6. }
  7. .advancedPromptMode {
  8. position: relative;
  9. }
  10. .advancedPromptMode::before {
  11. content: '';
  12. position: absolute;
  13. bottom: 0;
  14. left: -1px;
  15. width: 100%;
  16. height: 3px;
  17. background-color: rgba(68, 76, 231, 0.18);
  18. transform: skewX(-30deg);
  19. }