| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- .grw-slack-notification {
- $input-height-slack: $custom-control-indicator-size * 1.5;
- border-color: $gray-200;
- border-style: solid;
- border-width: 1px;
- border-radius: $input-height-slack/2 2px 2px $input-height-slack/2;
- .form-control {
- height: $input-height-slack;
- border: transparent;
- @include media-breakpoint-up(sm) {
- width: 130px;
- }
- @include media-breakpoint-up(md) {
- width: 180px;
- }
- }
- // height settings for slack button's responsive design
- // in the input and form-control element
- .grw-form-control-slack-notification.form-control {
- height: $input-height-slack;
- &:focus {
- box-shadow: none;
- }
- }
- .grw-input-group-slack-notification {
- height: $input-height-slack;
- label {
- display: flex;
- align-items: center;
- justify-content: center;
- margin-bottom: 0;
- }
- }
- .custom-control-label {
- &::before {
- border: transparent;
- }
- }
- }
- // TODO デザインの使用が確定して実装、本タスクのスコープ外
- // .grw-slack-notification-xd {
- // }
|