SlackNotification.module.scss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. @use '~/styles/bootstrap/init' as bs;
  2. .grw-slack-notification :global {
  3. $input-height-slack: bs.$custom-control-indicator-size * 1.5;
  4. border-color: bs.$gray-200;
  5. border-style: solid;
  6. border-width: 1px;
  7. border-radius: $input-height-slack/2 2px 2px $input-height-slack/2;
  8. .form-control {
  9. height: $input-height-slack;
  10. border: transparent;
  11. @include bs.media-breakpoint-up(sm) {
  12. width: 130px;
  13. }
  14. @include bs.media-breakpoint-up(md) {
  15. width: 180px;
  16. }
  17. }
  18. // height settings for slack button's responsive design
  19. // in the input and form-control element
  20. .grw-form-control-slack-notification.form-control {
  21. height: $input-height-slack;
  22. }
  23. .grw-input-group-slack-notification {
  24. height: $input-height-slack;
  25. label {
  26. display: flex;
  27. align-items: center;
  28. justify-content: center;
  29. margin-bottom: 0;
  30. }
  31. }
  32. .custom-control-label {
  33. &::before {
  34. border: transparent;
  35. }
  36. }
  37. }
  38. // TODO デザインの使用が確定して実装、本タスクのスコープ外
  39. // .grw-slack-notification-xd {
  40. // }