style.module.css 245 B

1234567891011121314
  1. .advancedPromptMode {
  2. position: relative;
  3. }
  4. .advancedPromptMode::before {
  5. content: '';
  6. position: absolute;
  7. bottom: 0;
  8. left: -1px;
  9. width: 100%;
  10. height: 3px;
  11. background-color: rgba(68, 76, 231, 0.18);
  12. transform: skewX(-30deg);
  13. }