diff --git a/app/javascript/dashboard/routes/dashboard/captain/builder/Index.vue b/app/javascript/dashboard/routes/dashboard/captain/builder/Index.vue index de5cc933e..bae5db7e4 100644 --- a/app/javascript/dashboard/routes/dashboard/captain/builder/Index.vue +++ b/app/javascript/dashboard/routes/dashboard/captain/builder/Index.vue @@ -143,9 +143,14 @@ watch(messages, () => nextTick().then(scrollToBottom), { deep: true });

{{ t('CAPTAIN_HERMES_BUILDER.EMPTY_STATE') }}

- +
nextTick().then(scrollToBottom), { deep: true }); } } +.start-button { + background: var(--color-woot-500, #1f93ff); + color: #fff; + border: none; + padding: 10px 24px; + border-radius: 8px; + font-size: 14px; + font-weight: 500; + cursor: pointer; + transition: background 0.15s; + + &:hover:not(:disabled) { + background: var(--color-woot-600, #1976d2); + } + + &:disabled { + opacity: 0.5; + cursor: not-allowed; + } +} + .msg { display: flex;